aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authorH.J. Lu <hjl@gnu.org>2002-02-01 20:37:13 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2002-02-01 12:37:13 -0800
commit3a441e3884882e1a6565773f56b08b8caf97009c (patch)
treeb5d2716a99ffdeb91dd3b1144c3c6cf8e634ff15 /libiberty
parentf2f6a4b0775798e57d426761a4f5e989c3df42eb (diff)
downloadgcc-3a441e3884882e1a6565773f56b08b8caf97009c.zip
gcc-3a441e3884882e1a6565773f56b08b8caf97009c.tar.gz
gcc-3a441e3884882e1a6565773f56b08b8caf97009c.tar.bz2
cp-demangle.c (cp_demangle_type): Call demangling_new with DMGL_GNU_V3.
2002-02-01 H.J. Lu <hjl@gnu.org> * cp-demangle.c (cp_demangle_type): Call demangling_new with DMGL_GNU_V3. From-SVN: r49409
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog5
-rw-r--r--libiberty/cp-demangle.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 5151887..04b01d7 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-01 H.J. Lu <hjl@gnu.org>
+
+ * cp-demangle.c (cp_demangle_type): Call demangling_new with
+ DMGL_GNU_V3.
+
2002-01-31 Phil Edwards <pme@gcc.gnu.org>
* cp-demangle.c: Revert yesterday's change.
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c
index 457a09f..01c956b 100644
--- a/libiberty/cp-demangle.c
+++ b/libiberty/cp-demangle.c
@@ -3540,7 +3540,7 @@ cp_demangle_type (type_name, result)
dyn_string_t result;
{
status_t status;
- demangling_t dm = demangling_new (type_name);
+ demangling_t dm = demangling_new (type_name, DMGL_GNU_V3);
if (dm == NULL)
return STATUS_ALLOCATION_FAILED;