diff options
author | Michael Chastain <mec@google.com> | 2003-11-11 20:04:52 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2003-11-11 20:04:52 +0000 |
commit | f594e5e9c9b41dbe1223b25be5ddeacc5cd72e2e (patch) | |
tree | 728d69ebc663806ac63a66f257dc4085c4e27a4c /gdb/dbxread.c | |
parent | d9407aaa549c6270b7d99443835d287bce6b50a7 (diff) | |
download | gdb-f594e5e9c9b41dbe1223b25be5ddeacc5cd72e2e.zip gdb-f594e5e9c9b41dbe1223b25be5ddeacc5cd72e2e.tar.gz gdb-f594e5e9c9b41dbe1223b25be5ddeacc5cd72e2e.tar.bz2 |
2003-11-07 Michael Chastain <mec@shout.net>
* symtab.h (struct minimal_symbol): Add size.
* dbxread.c: Use it.
* elfread.c: (record_minimal_symbol_and_info): Do not use info.
Rename to record_minimal_symbol.
(elf_symtab_read): Set MSYMBOL_SIZE explicitly.
* minsyms.c (prim_record_minimal_symbol_and_info): Initialize MSYMBOL_SIZE.
(install_minimal_symbols): Ditto.
* objfiles.c (terminate_minimal_symbol_table): Ditto.
* arm-tdep.c: Delete unused MSYMBOL_SIZE.
* m68hc11-tdep.c: Ditto.
* mips-tdep.c: Ditto.
* sh64-tdep.c: Ditto.
Diffstat (limited to 'gdb/dbxread.c')
-rw-r--r-- | gdb/dbxread.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/dbxread.c b/gdb/dbxread.c index f0fadfd..c736c34 100644 --- a/gdb/dbxread.c +++ b/gdb/dbxread.c @@ -64,14 +64,6 @@ #include "aout/stab_gnu.h" /* We always use GNU stabs, not native, now */ -/* This macro returns the size field of a minimal symbol, which is normally - stored in the "info" field. The macro can be overridden for specific - targets (e.g. MIPS16) that use the info field for other purposes. */ -#ifndef MSYMBOL_SIZE -#define MSYMBOL_SIZE(msym) ((long) MSYMBOL_INFO (msym)) -#endif - - /* We put a pointer to this structure in the read_symtab_private field of the psymtab. */ |