mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
e23727694c
llvm-svn: 90626
15 lines
241 B
C
15 lines
241 B
C
// RUN: %llvmgcc -std=c99 %s -S -o - | \
|
|
// 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 ) ;
|
|
}
|
|
}
|
|
|