diff options
Diffstat (limited to 'gdb/coff-solib.c')
-rw-r--r-- | gdb/coff-solib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/coff-solib.c b/gdb/coff-solib.c index 697fdac..4b8ab00 100644 --- a/gdb/coff-solib.c +++ b/gdb/coff-solib.c @@ -20,6 +20,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "defs.h" +#include "frame.h" #include "bfd.h" #include "gdbcore.h" #include "symtab.h" @@ -97,6 +98,10 @@ coff_solib_add (arg_string, from_tty, target) libsize -= len * 4; lib += len * 4; } + + /* Getting new symbols may change our opinion about what is + frameless. */ + reinit_frame_cache (); } } |