Commit 07623417 by Andrew MacLeod Committed by Andrew Macleod

cplus-dem.c (demangle_qualified): Add a missing else which caused qualified...

cplus-dem.c (demangle_qualified): Add a missing else which caused
qualified names with temp,lates to be demangled improperly.

From-SVN: r19433
parent 97d6fd65
Mon Apr 27 15:53:30 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* cplus-dem.c (demangle_qualified): Replace missing else.
Mon Apr 27 20:22:08 1998 J"orn Rennecke <amylaar@cygnus.co.uk> Mon Apr 27 20:22:08 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* sh.c (gen_ashift_hi): Don't make SUBREG of a SUBREG. * sh.c (gen_ashift_hi): Don't make SUBREG of a SUBREG.
......
...@@ -2324,7 +2324,7 @@ demangle_qualified (work, mangled, result, isfuncname, append) ...@@ -2324,7 +2324,7 @@ demangle_qualified (work, mangled, result, isfuncname, append)
success = do_type (work, mangled, &temp); success = do_type (work, mangled, &temp);
if (!success) break; if (!success) break;
} }
if (*mangled[0] == 'K') else if (*mangled[0] == 'K')
{ {
int idx; int idx;
(*mangled)++; (*mangled)++;
......
Mon Apr 27 15:53:30 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* cplus-dem.c (demangle_qualified): Replace missing else.
Sun Apr 26 15:38:50 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> Sun Apr 26 15:38:50 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* cplus-dem.c (gnu_special): Fix off-by-one bug when checking the * cplus-dem.c (gnu_special): Fix off-by-one bug when checking the
......
...@@ -2324,7 +2324,7 @@ demangle_qualified (work, mangled, result, isfuncname, append) ...@@ -2324,7 +2324,7 @@ demangle_qualified (work, mangled, result, isfuncname, append)
success = do_type (work, mangled, &temp); success = do_type (work, mangled, &temp);
if (!success) break; if (!success) break;
} }
if (*mangled[0] == 'K') else if (*mangled[0] == 'K')
{ {
int idx; int idx;
(*mangled)++; (*mangled)++;
......
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