diff options
author | David Carlton <carlton@bactrian.org> | 2003-02-04 21:37:03 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-02-04 21:37:03 +0000 |
commit | f48b0ff4b17cc374864fdacf85d460ff984237a4 (patch) | |
tree | 369f9cda5b5848ecc0009125c1caeda2c427bdec /gdb/symtab.h | |
parent | eb51119913ab3015f8a86df4867980250d1f7de5 (diff) | |
download | gdb-f48b0ff4b17cc374864fdacf85d460ff984237a4.tar.gz |
2003-02-04 David Carlton <carlton@math.stanford.edu>
* symtab.h (SYMBOL_LINKAGE_NAME): Delete.
* printcmd.c (build_address_symbolic): Replace uses of
SYMBOL_LINKAGE_NAME by equivalent uses of SYMBOL_SOURCE_NAME,
SYMBOL_NAME, and asm_demangle.
Update copyright.
Diffstat (limited to 'gdb/symtab.h')
-rw-r--r-- | gdb/symtab.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gdb/symtab.h b/gdb/symtab.h index b21081d9e91..2c839293e53 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -178,17 +178,6 @@ extern char *symbol_demangled_name (struct general_symbol_info *symbol); ? SYMBOL_DEMANGLED_NAME (symbol) \ : SYMBOL_NAME (symbol)) -/* Macro that returns the "natural assembly name" of a symbol. In C++ this is - the "mangled" form of the name if demangle is off, or if demangle is on and - asm_demangle is off. Otherwise if asm_demangle is on it is the "demangled" - form. In other languages this is just the symbol name. The result should - never be NULL. */ - -#define SYMBOL_LINKAGE_NAME(symbol) \ - (demangle && asm_demangle && SYMBOL_DEMANGLED_NAME (symbol) != NULL \ - ? SYMBOL_DEMANGLED_NAME (symbol) \ - : SYMBOL_NAME (symbol)) - /* Macro that tests a symbol for a match against a specified name string. First test the unencoded name, then looks for and test a C++ encoded name if it exists. Note that whitespace is ignored while attempting to |