brintos

brintos / llvm-project-archived public Read only

0
0
Text · 264 B · 597b0bd Raw
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