blob: 0f076c9bf79f1709d898d9bce5d93ed9eae7db4a [file] [log] [blame]
Dan Gohman8a3f6442009-12-05 00:02:37 +00001// RUN: %llvmgcc -std=c99 %s -S -o - | \
Reid Spencerc1a6e302007-03-19 18:25:55 +00002// 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