diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-02-03 22:00:56 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-02-03 22:00:56 +0000 |
commit | eab73163fcc75925fd4a4c225e1997b86ce3d322 (patch) | |
tree | 70e631a557de6942c139323c8a7a5bd3414b5d76 /gdb/objfiles.h | |
parent | 41d5c6ad6b8530d4f2df97ccb4bad485260d06cf (diff) | |
download | gdb-eab73163fcc75925fd4a4c225e1997b86ce3d322.tar.gz |
Merge with interps-20030203-mergepoint.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 587e71c7438..44b820187c1 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -515,6 +515,8 @@ extern struct objfile *allocate_objfile (bfd *, int); extern int build_objfile_section_table (struct objfile *); +extern void terminate_minimal_symbol_table (struct objfile *objfile); + extern void put_objfile_before (struct objfile *, struct objfile *); extern void objfile_to_front (struct objfile *); @@ -595,8 +597,7 @@ extern int is_in_import_list (char *, struct objfile *); #define ALL_MSYMBOLS(objfile, m) \ ALL_OBJFILES (objfile) \ - if ((objfile)->msymbols) \ - ALL_OBJFILE_MSYMBOLS (objfile, m) + ALL_OBJFILE_MSYMBOLS (objfile, m) #define ALL_OBJFILE_OSECTIONS(objfile, osect) \ for (osect = objfile->sections; osect < objfile->sections_end; osect++) |