From 56668fb05b1b64db231909ad195e1d74aad12f9e Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Wed, 13 Mar 2002 17:44:22 +0000 Subject: [PATCH] Fix last commit. From-SVN: r50749 --- gcc/cp/mangle.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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;