mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 21:34:13 +08:00
2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de> * symtab.c (lookup_symbol_aux): Call lookup_symbol_aux, not lookup_symbol, when trying to find a symbol with a mangled name, to avoid infinite recursion.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2001-02-19 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
|
||||||
|
|
||||||
|
From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>
|
||||||
|
* symtab.c (lookup_symbol_aux): Call lookup_symbol_aux, not
|
||||||
|
lookup_symbol, when trying to find a symbol with a mangled name,
|
||||||
|
to avoid infinite recursion.
|
||||||
|
|
||||||
2001-02-18 Andrew Cagney <ac131313@redhat.com>
|
2001-02-18 Andrew Cagney <ac131313@redhat.com>
|
||||||
|
|
||||||
* TODO (5.2): Mention G++ 3.0 ABI. General cleanups.
|
* TODO (5.2): Mention G++ 3.0 ABI. General cleanups.
|
||||||
|
@ -949,8 +949,8 @@ lookup_symbol_aux (const char *name, const struct block *block,
|
|||||||
&& MSYMBOL_TYPE (msymbol) != mst_file_text
|
&& MSYMBOL_TYPE (msymbol) != mst_file_text
|
||||||
&& !STREQ (name, SYMBOL_NAME (msymbol)))
|
&& !STREQ (name, SYMBOL_NAME (msymbol)))
|
||||||
{
|
{
|
||||||
return lookup_symbol (SYMBOL_NAME (msymbol), block,
|
return lookup_symbol_aux (SYMBOL_NAME (msymbol), block,
|
||||||
namespace, is_a_field_of_this, symtab);
|
namespace, is_a_field_of_this, symtab);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user