diff options
author | Stan Shebs <shebs@codesourcery.com> | 1993-10-03 23:04:25 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1993-10-03 23:04:25 +0000 |
commit | 965a5c32b7ba24badd484aec51b5c3b387ba3fb3 (patch) | |
tree | 7ffa333f3d92b768f2d94f8e7c1d5207948e58bc /gdb/objfiles.h | |
parent | 47d224511678b02e22a0b63655bfeb48aa744a68 (diff) | |
download | gdb-965a5c32b7ba24badd484aec51b5c3b387ba3fb3.zip gdb-965a5c32b7ba24badd484aec51b5c3b387ba3fb3.tar.gz gdb-965a5c32b7ba24badd484aec51b5c3b387ba3fb3.tar.bz2 |
Added new slot to objfile struct to be shared by all stab-reading formats.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 19e7981..50226ff 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -270,6 +270,11 @@ struct objfile struct entry_info ei; + /* Information about stabs. Will be filled in with a dbx_symfile_info + struct by those readers that need it. */ + + PTR sym_stab_info; + /* Hook for information for use by the symbol reader (currently used for information shared by sym_init and sym_read). It is typically a pointer to malloc'd memory. The symbol reader's finish |