diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/buildsym.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b7f8ba183e..455f44853c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 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> * inferior.h: Fix declarations of get_inferior_args and set_inferior_args, which were missing the trailing 's'. diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 4fd969dfd2..e30f98a025 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -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! */ |