Fixed some bugs.
[llvm/zpu.git] / test / FrontendC / 2005-06-15-ExpandGotoInternalProblem.c
blob0f076c9bf79f1709d898d9bce5d93ed9eae7db4a
1 // RUN: %llvmgcc -std=c99 %s -S -o - | \
2 // RUN: opt -std-compile-opts -disable-output
3 // PR580
5 int X, Y;
6 int foo() {
7 int i;
8 for (i=0; i<100; i++ )
10 break;
11 i = ( X || Y ) ;