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/cp-demangle.c | |
parent | f2f6a4b0775798e57d426761a4f5e989c3df42eb (diff) | |
download | gcc-3a441e3884882e1a6565773f56b08b8caf97009c.tar.gz |
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/cp-demangle.c')
-rw-r--r-- | libiberty/cp-demangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c index 457a09f4c19..01c956b82f9 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; |