15 lines · c
1// RUN: %clang_cc1 -Wno-error=return-type -std=c99 %s -emit-llvm -o - | \2// RUN: opt -O3 -disable-output3// PR5804 5int X, Y;6int foo(void) {7 int i;8 for (i=0; i<100; i++ )9 {10 break;11 i = ( X || Y ) ;12 }13}14 15