diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/somread.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 86a883e..71397d6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Tue Aug 30 21:56:54 1994 Jeff Law (law@snake.cs.utah.edu) + + * somread.c (som_symfile_read): Force unwinds to be re-read after + reading in a new partial symbol table. + Tue Aug 30 13:14:16 1994 Stan Shebs (shebs@andros.cygnus.com) * config/h8500/tm-8500.h (DONT_USE_REMOTE): Remove definition, diff --git a/gdb/somread.c b/gdb/somread.c index 2dd2291..48ea124 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -342,6 +342,8 @@ som_symfile_read (objfile, section_offsets, mainline) minimal symbols for this objfile. */ install_minimal_symbols (objfile); + /* Force hppa-tdep.c to re-read the unwind descriptors. */ + OBJ_UNWIND_INFO (objfile) = NULL; do_cleanups (back_to); } |