diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-09-10 19:35:16 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-10 19:35:16 +0000 |
commit | bb22da4b6d37f63ace64df47c215a19848256d73 (patch) | |
tree | a3c7333e535ced81359bd2b9f69a9b9f5a204206 /libiberty/cplus-dem.c | |
parent | d982e46e1c8ec6ed6ab7afc51c7390788edaa0e6 (diff) | |
download | gcc-bb22da4b6d37f63ace64df47c215a19848256d73.zip gcc-bb22da4b6d37f63ace64df47c215a19848256d73.tar.gz gcc-bb22da4b6d37f63ace64df47c215a19848256d73.tar.bz2 |
demangle-expected: Add four tests for type_info mangling.
* testsuite/demangle-expected: Add four tests for type_info
mangling.
* cplus-dem.c (gnu_special): Use do_type, not demangle_fund_type,
for a non-template non-qualified type_info function or node.
From-SVN: r36301
Diffstat (limited to 'libiberty/cplus-dem.c')
-rw-r--r-- | libiberty/cplus-dem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index e00f787..79b6dc5 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -2872,7 +2872,7 @@ gnu_special (work, mangled, declp) success = demangle_template (work, mangled, declp, 0, 1, 1); break; default: - success = demangle_fund_type (work, mangled, declp); + success = do_type (work, mangled, declp); break; } if (success && **mangled != '\0') |