summaryrefslogtreecommitdiff
path: root/test/FrontendC/2005-06-15-ExpandGotoInternalProblem.c
blob: 0f076c9bf79f1709d898d9bce5d93ed9eae7db4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %llvmgcc -std=c99 %s -S -o - | \
// RUN:    opt -std-compile-opts -disable-output
// PR580

int X, Y;
int foo() {
  int i;
        for (i=0; i<100; i++ )
        {
                break;
                i = ( X || Y ) ;
        }
}