* minsyms.c, symtab.h (prim_record_minimal_symbol{,_and_info}),

coffread.c (record_minimal_symbol),
	xcoffread.c (RECORD_MINIMAL_SYMBOL), callers: Add objfile parameter.
This commit is contained in:
Jim Kingdon
1993-12-27 17:47:28 +00:00
parent dfb4a50861
commit 8d60affde9
8 changed files with 39 additions and 28 deletions

View File

@ -89,7 +89,7 @@ record_minimal_symbol (name, address, ms_type, objfile)
struct objfile *objfile;
{
name = obsavestring (name, strlen (name), &objfile -> symbol_obstack);
prim_record_minimal_symbol (name, address, ms_type);
prim_record_minimal_symbol (name, address, ms_type, objfile);
}