1
0
mirror of https://github.com/golang/go synced 2024-09-24 21:10:12 -06:00

keep line number history even when

throwing away dead code at end of file.

also fix an uninitialized memory error
found by valgrind.

R=r
DELTA=7  (5 added, 2 deleted, 0 changed)
OCL=23991
CL=23994
This commit is contained in:
Russ Cox 2009-01-30 17:10:10 -08:00
parent 9e735985d4
commit 47e27758db
2 changed files with 5 additions and 2 deletions

View File

@ -757,6 +757,7 @@ addhist(int32 line, int type)
u->link = curhist;
curhist = u;
s->name[0] = 0;
j = 1;
for(i=0; i<histfrogp; i++) {
k = histfrog[i]->value;
@ -764,6 +765,8 @@ addhist(int32 line, int type)
s->name[j+1] = k;
j += 2;
}
s->name[j] = 0;
s->name[j+1] = 0;
}
void

View File

@ -240,8 +240,6 @@ asmsym(void)
for(p=textp; p!=P; p=p->pcond) {
s = p->from.sym;
if(s->type != STEXT)
continue;
/* filenames first */
for(a=p->to.autom; a; a=a->link)
@ -251,6 +249,8 @@ asmsym(void)
if(a->type == D_FILE1)
putsymb(a->asym->name, 'Z', a->aoffset, 0, nil);
if(s->type != STEXT)
continue;
putsymb(s->name, 'T', s->value, s->version, gotypefor(s->name));
/* frame, auto and param after */