* i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
This commit is contained in:
parent
0d9fd8f1d0
commit
645dd51955
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-03-02 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
|
||||
DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
|
||||
|
||||
2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* arch-utils.c (generic_register_byte): Fix to use the loop index
|
||||
|
|
|
@ -1293,7 +1293,7 @@ i386_pe_skip_trampoline_code (CORE_ADDR pc, char *name)
|
|||
unsigned long indirect = read_memory_unsigned_integer (pc + 2, 4);
|
||||
struct minimal_symbol *indsym =
|
||||
indirect ? lookup_minimal_symbol_by_pc (indirect) : 0;
|
||||
char *symname = indsym ? DEPRECATED_SYMBOL_NAME (indsym) : 0;
|
||||
char *symname = indsym ? SYMBOL_LINKAGE_NAME (indsym) : 0;
|
||||
|
||||
if (symname)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue