aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>2000-03-28 18:06:15 +0000
committerTom Tromey <tromey@gcc.gnu.org>2000-03-28 18:06:15 +0000
commit1f58da7fe3ef4726d9da51f44fee23fea0e07157 (patch)
tree56479ad6bcadad4a0865e498bbb1c30cff40abe8 /gcc/gcc.c
parent13eb1f7f0de383603d383c0644873ac8cb1afc62 (diff)
downloadgcc-1f58da7fe3ef4726d9da51f44fee23fea0e07157.zip
gcc-1f58da7fe3ef4726d9da51f44fee23fea0e07157.tar.gz
gcc-1f58da7fe3ef4726d9da51f44fee23fea0e07157.tar.bz2
gcc.c (handle_braces): In {x*...} case, break out of loop if switch is found.
* gcc.c (handle_braces): In {x*...} case, break out of loop if switch is found. From-SVN: r32784
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index b7bc24271..a089aba 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -4778,6 +4778,7 @@ next_member:
&& check_live_switch (i, hard_match_len))
{
present = 1;
+ break;
}
}
}