Update tests that need to be run through llvm-upgrade. This is necessary
[oota-llvm.git] / test / CFrontend / 2005-06-15-ExpandGotoInternalProblem.c
1 // RUN: %llvmgcc -std=c99 %s -S -o - | gccas -o /dev/null
2 // PR580
3
4 int X, Y;
5 int foo() {
6   int i;
7         for (i=0; i<100; i++ )
8         {
9                 break;
10                 i = ( X || Y ) ;
11         }
12 }
13