* coffread.c (process_coff_symbol, coff_read_enum_type): Call

allocate_symbol.
	* dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
	(read_func_scope): Call allocate_template_symbol.
	(new_symbol_full): Call allocate_symbol.
	* jit.c (finalize_symtab): Call allocate_symbol.
	* jv-lang.c (add_class_symbol): Call allocate_symbol.
	* mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
	* stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
	(common_block_end): Call allocate_symbol.
	* symtab.c (allocate_symbol, initialize_symbol)
	(allocate_template_symbol): New functions.
	* symtab.c (allocate_symbol, initialize_symbol)
	(allocate_template_symbol): Declare.
	* xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
This commit is contained in:
Tom Tromey 2013-04-08 19:48:30 +00:00
parent 5f77db5271
commit e623cf5da2
10 changed files with 76 additions and 44 deletions

View file

@ -1363,4 +1363,10 @@ void iterate_over_symbols (const struct block *block, const char *name,
struct cleanup *demangle_for_lookup (const char *name, enum language lang,
const char **result_name);
struct symbol *allocate_symbol (struct objfile *);
void initialize_symbol (struct symbol *);
struct template_symbol *allocate_template_symbol (struct objfile *);
#endif /* !defined(SYMTAB_H) */