]> gcc.gnu.org Git - gcc.git/commitdiff
gcc.c (handle_braces): In {x*...} case, break out of loop if switch is found.
authorTom Tromey <tromey@cygnus.com>
Tue, 28 Mar 2000 18:06:15 +0000 (18:06 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 28 Mar 2000 18:06:15 +0000 (18:06 +0000)
* gcc.c (handle_braces): In {x*...} case, break out of loop if
switch is found.

From-SVN: r32784

gcc/ChangeLog
gcc/gcc.c

index fb06be1bcddd23c472eaaf6510318ab0d49ecd87..2e679b43fe6dc895fec67581f4dc0874907eb046 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-27  Tom Tromey  <tromey@cygnus.com>
+
+       * gcc.c (handle_braces): In {x*...} case, break out of loop if
+       switch is found.
+
 Tue Mar 28 11:55:48 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
 
        * expr.c (store_constructor): SIZE now signed.
index b7bc24271102ee5ffcc41ca1fdb066459299440a..a089abaa0e1ce004bd12683a8c22da4dcf0a987d 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -4778,6 +4778,7 @@ next_member:
                  && check_live_switch (i, hard_match_len))
                {
                  present = 1;
+                 break;
                }
            }
        }
This page took 0.100287 seconds and 5 git commands to generate.