* symfile.c (symbol_file_add): Move reinit_frame_cache call to

the callers of symbol_file_add. Gets rid of heuristic fence-post
	warnings on mips and alpha targets when the PC resides in a shared
	library which is not yet read in.
	* coff-solib.c (coff_solib_add), cxux-nat.c (add_shared_symbol_files),
	irix5-nat.c (solib_add), osfsolib.c (solib_add),
	remote-vx.c (vx_open), solib.c (solib_add):
	Add call to reinit_frame_cache after all shared libraries are read in.
	* remote-udi.c (udi_load), remote-vx.c (vx_load_command),
	symfile.c (symbol_file_command, add_symbol_file_command):
	Add call to reinit_frame_cache after symbol_file_add.
This commit is contained in:
Peter Schauer
1994-08-28 13:57:48 +00:00
parent b11fb93989
commit 46d185d3d1
7 changed files with 59 additions and 10 deletions

View File

@@ -32,6 +32,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
MiniMON interface with UDI-p interface. */
#include "defs.h"
#include "frame.h"
#include "inferior.h"
#include "wait.h"
#include "value.h"
@@ -1293,6 +1294,10 @@ udi_load(args, from_tty)
download (args, from_tty);
symbol_file_add (strtok (args, " \t"), from_tty, 0, 0, 0, 0);
/* Getting new symbols may change our opinion about what is
frameless. */
reinit_frame_cache ();
}
/*************************************************** UDI_WRITE_INFERIOR_MEMORY