blob: dd1acc54bc1dcebc85f2d14c0c6141175916d05c [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | \
2// RUN: opt -std-compile-opts -disable-output
3// 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