diff options
author | H.J. Lu <hjl@gnu.org> | 2002-02-01 20:37:13 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2002-02-01 12:37:13 -0800 |
commit | 3a441e3884882e1a6565773f56b08b8caf97009c (patch) | |
tree | b5d2716a99ffdeb91dd3b1144c3c6cf8e634ff15 /libiberty | |
parent | f2f6a4b0775798e57d426761a4f5e989c3df42eb (diff) | |
download | gcc-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/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/cp-demangle.c | 2 |
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; |