summaryrefslogtreecommitdiffstats
path: root/test/CFrontend/2005-06-15-ExpandGotoInternalProblem.c
blob: 0b49f52b1f510a6cd58f8801e1b29f92425d0903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %llvmgcc -std=c99 %s -S -o - | gccas -o /dev/null
// PR580

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