blob: d7d03badfddf2cd15a1846d760d3f89069d3b504 [file] [log] [blame]
Reid Spencerc1a6e302007-03-19 18:25:55 +00001// RUN: %llvmgcc -std=c99 %s -S -o - | llvm-as | \
2// RUN: opt -std-compile-opts -disable-output
Chris Lattner065e4202005-06-15 22:42:53 +00003// PR580
4
5int X, Y;
6int foo() {
7 int i;
8 for (i=0; i<100; i++ )
9 {
10 break;
11 i = ( X || Y ) ;
12 }
13}
14