aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@gcc.gnu.org>2002-03-13 17:44:22 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2002-03-13 17:44:22 +0000
commit56668fb05b1b64db231909ad195e1d74aad12f9e (patch)
treebd7e16d5da598283eb56243e4e74b0404c111bf9
parent440d0518b32bbe629723af8ed5b91209713ce6f5 (diff)
downloadgcc-56668fb05b1b64db231909ad195e1d74aad12f9e.zip
gcc-56668fb05b1b64db231909ad195e1d74aad12f9e.tar.gz
gcc-56668fb05b1b64db231909ad195e1d74aad12f9e.tar.bz2
Fix last commit.
From-SVN: r50749
-rw-r--r--gcc/cp/mangle.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/cp/mangle.c b/gcc/cp/mangle.c
index 239714d..623fc3d 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;