summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2003-03-02 10:40:37 +0000
committerMark Kettenis <kettenis@gnu.org>2003-03-02 10:40:37 +0000
commit74b3838624172100108689d7737091ed214f95cf (patch)
tree5321a1521c15f68276eb1d8cf88d62edce13ef71
parentf9a25da8435507772439c4c1d14701c1256ead49 (diff)
downloadgdb-74b3838624172100108689d7737091ed214f95cf.tar.gz
* i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/i386-tdep.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 09755387207..5a109391add 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c
index c0d272c906c..005a052cbf8 100644
--- a/gdb/i386-tdep.c
+++ b/gdb/i386-tdep.c
@@ -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)
{