1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Regression/CFrontend/2005-06-15-ExpandGotoInternalProblem.c
Chris Lattner a3f66fc00f new testcase for PR580
llvm-svn: 22222
2005-06-15 22:42:53 +00:00

14 lines
209 B
C

// RUN: %llvmgcc -std=c99 %s -S -o - | gccas -o /dev/null
// PR580
int X, Y;
int foo() {
int i;
for (i=0; i<100; i++ )
{
break;
i = ( X || Y ) ;
}
}