OSDN Git Service

* i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
authorMark Kettenis <kettenis@gnu.org>
Sun, 2 Mar 2003 10:40:37 +0000 (10:40 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sun, 2 Mar 2003 10:40:37 +0000 (10:40 +0000)
DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.

gdb/ChangeLog
gdb/i386-tdep.c

index 0975538..5a10939 100644 (file)
@@ -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 
index c0d272c..005a052 100644 (file)
@@ -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)
        {