From: Richard Sandiford Date: Wed, 13 Mar 2002 17:44:22 +0000 (+0000) Subject: Fix last commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=56668fb05b1b64db231909ad195e1d74aad12f9e;p=gcc.git Fix last commit. From-SVN: r50749 --- diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c index 239714d77d1..623fc3d3504 100644 --- a/gcc/cp/mangle.c +++ b/gcc/cp/mangle.c @@ -1564,8 +1564,11 @@ write_builtin_type (type) /* Couldn't find this type. */ abort (); } - type = t; - goto iagain; + else + { + type = t; + goto iagain; + } } } break;