mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 04:43:17 +08:00
2001-04-06 Fernando Nasser <fnasser@redhat.com>
* buildsym.c (record_line): Turn off unused addr bits.
This commit is contained in:
@ -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>
|
2001-04-06 Fernando Nasser <fnasser@redhat.com>
|
||||||
|
|
||||||
From David Deephanphongs <deephan@telocity.com>
|
From David Deephanphongs <deephan@telocity.com>
|
||||||
|
@ -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 = subfile->line_vector->item + subfile->line_vector->nitems++;
|
||||||
e->line = line;
|
e->line = line;
|
||||||
e->pc = pc;
|
e->pc = ADDR_BITS_REMOVE(pc);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Needed in order to sort line tables from IBM xcoff files. Sigh! */
|
/* Needed in order to sort line tables from IBM xcoff files. Sigh! */
|
||||||
|
Reference in New Issue
Block a user