2001-04-06 Fernando Nasser <fnasser@redhat.com>

* buildsym.c (record_line): Turn off unused addr bits.
This commit is contained in:
Fernando Nasser 2001-04-06 13:14:55 +00:00
parent 40f905288f
commit 063fd66879
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-04-06 Fernando Nasser <fnasser@redhat.com>
* buildsym.c (record_line): Turn off unused addr bits.
2001-04-06 Fernando Nasser <fnasser@redhat.com>
From David Deephanphongs <deephan@telocity.com>

View File

@ -726,7 +726,7 @@ record_line (register struct subfile *subfile, int line, CORE_ADDR pc)
e = subfile->line_vector->item + subfile->line_vector->nitems++;
e->line = line;
e->pc = pc;
e->pc = ADDR_BITS_REMOVE(pc);
}
/* Needed in order to sort line tables from IBM xcoff files. Sigh! */