diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/somread.c | 7 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8bd3bfc..73b503d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2006-03-01 Randolph Chung <tausq@debian.org> + * somread.c (som_symfile_read): Update comment and remove unneeded + use of a deprecated variable. + +2006-03-01 Randolph Chung <tausq@debian.org> + * hppa-tdep.h (unwind_table_entry): Update field names to match HP runtime specification. * hppa-tdep.c (internalize_unwinds, hppa_frame_cache): Likewise. diff --git a/gdb/somread.c b/gdb/somread.c index b58e69c..c187d13 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -353,9 +353,7 @@ som_symfile_read (struct objfile *objfile, int mainline) do_cleanups (back_to); /* Now read information from the stabs debug sections. - This is a no-op for SOM. - Perhaps it is intended for some kind of mixed STABS/SOM - situation? */ + This is emitted by gcc. */ stabsect_build_psymtabs (objfile, mainline, "$GDB_SYMBOLS$", "$GDB_STRINGS$", "$TEXT$"); @@ -364,9 +362,6 @@ som_symfile_read (struct objfile *objfile, int mainline) the DNTT, but is now done via the PXDB-built quick-lookup tables together with a scan of the GNTT. See hp-psymtab-read.c. */ hpread_build_psymtabs (objfile, mainline); - - /* Force hppa-tdep.c to re-read the unwind descriptors. */ - objfile->deprecated_obj_private = NULL; } /* Initialize anything that needs initializing when a completely new symbol |