mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 12:39:59 +00: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:
parent
0db23c95cc
commit
23cc649f21
@ -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>
|
||||
|
||||
* 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
|
||||
&& !STREQ (name, SYMBOL_NAME (msymbol)))
|
||||
{
|
||||
return lookup_symbol (SYMBOL_NAME (msymbol), block,
|
||||
namespace, is_a_field_of_this, symtab);
|
||||
return lookup_symbol_aux (SYMBOL_NAME (msymbol), block,
|
||||
namespace, is_a_field_of_this, symtab);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user