From: Brendan Kehoe Date: Tue, 11 Mar 1997 22:18:56 +0000 (-0500) Subject: cplus-dem.c (gnu_special): Call demangled_fund_type for other __t* symbols. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e9b1360b4952466ae1e4189b4002b131c95e649d;p=gcc.git cplus-dem.c (gnu_special): Call demangled_fund_type for other __t* symbols. * cplus-dem.c (gnu_special): Call demangled_fund_type for other __t* symbols. From-SVN: r13699 --- diff --git a/gcc/cplus-dem.c b/gcc/cplus-dem.c index 5028df1d10e..02f0887c917 100644 --- a/gcc/cplus-dem.c +++ b/gcc/cplus-dem.c @@ -1614,9 +1614,8 @@ gnu_special (work, mangled, declp) success = demangle_template (work, mangled, declp, 0); break; default: - n = consume_count (mangled); - string_appendn (declp, *mangled, n); - (*mangled) += n; + success = demangle_fund_type (work, mangled, declp); + break; } if (success && **mangled != '\0') success = 0;