blob: 0698601ad13356985076f89a35e07c4342de3a4d [file] [log] [blame]
Eric Christophere6051002011-07-26 00:57:50 +00001// RUN: %clang_cc1 -std=c99 %s -emit-llvm -o - | \
Rafael Espindolac55172e2014-10-16 20:00:22 +00002// RUN: opt -O3 -disable-output
Eric Christophere6051002011-07-26 00:57:50 +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