aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorKung Hsu <kung@cygnus>1993-09-29 18:44:47 +0000
committerKung Hsu <kung@cygnus>1993-09-29 18:44:47 +0000
commit2d575e6fed32a86eadacdfce3e13a96e0026922c (patch)
tree6617c04e35995aed1094a8a6ee4e0be537d1449d /gdb/symtab.c
parent33f00b4425005ceda82749f35bc76ebc83d9c12a (diff)
downloadgdb-2d575e6fed32a86eadacdfce3e13a96e0026922c.zip
gdb-2d575e6fed32a86eadacdfce3e13a96e0026922c.tar.gz
gdb-2d575e6fed32a86eadacdfce3e13a96e0026922c.tar.bz2
Modified Files:
symtab.c * symtab.c: fix a bug in gdb_mangle_name, to get mangled name right
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 60b7211..b5906a6 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -258,13 +258,13 @@ gdb_mangle_name (type, i, j)
char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
char *newname = type_name_no_tag (type);
- int is_constructor = newname != NULL && STREQ (field_name, newname);
- int is_destructor = is_constructor && DESTRUCTOR_PREFIX_P (physname);
+ int is_constructor = (physname[0]=='_' && physname[1]=='_');
+ int is_destructor = DESTRUCTOR_PREFIX_P (physname);
/* Need a new type prefix. */
char *const_prefix = method->is_const ? "C" : "";
char *volatile_prefix = method->is_volatile ? "V" : "";
char buf[20];
-#ifndef GCC_MANGLE_BUG
+#ifdef GCC_MANGLE_BUG
int len = newname == NULL ? 0 : strlen (newname);
if (is_destructor)
@@ -305,9 +305,10 @@ gdb_mangle_name (type, i, j)
strcat (mangled_name, buf);
/* If the class doesn't have a name, i.e. newname NULL, then we just
mangle it using 0 for the length of the class. Thus it gets mangled
- as something starting with `::' rather than `classname::'. */
+ as something starting with `::' rather than `classname::'. */
if (newname != NULL)
strcat (mangled_name, newname);
+
#else
char *opname;