Commit e9b1360b by Brendan Kehoe

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
parent 3c99d5ff
...@@ -1614,9 +1614,8 @@ gnu_special (work, mangled, declp) ...@@ -1614,9 +1614,8 @@ gnu_special (work, mangled, declp)
success = demangle_template (work, mangled, declp, 0); success = demangle_template (work, mangled, declp, 0);
break; break;
default: default:
n = consume_count (mangled); success = demangle_fund_type (work, mangled, declp);
string_appendn (declp, *mangled, n); break;
(*mangled) += n;
} }
if (success && **mangled != '\0') if (success && **mangled != '\0')
success = 0; success = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment