1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c
Reid Spencer b552bbd876 Use opt instead of gccas.
llvm-svn: 35168
2007-03-19 18:25:55 +00:00

15 lines
251 B
C

// RUN: %llvmgcc -std=c99 %s -S -o - | llvm-as | \
// RUN: opt -std-compile-opts -disable-output
// PR580
int X, Y;
int foo() {
int i;
for (i=0; i<100; i++ )
{
break;
i = ( X || Y ) ;
}
}