PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2005-06-15-ExpandGotoInternalProblem.c
blobd7d03badfddf2cd15a1846d760d3f89069d3b504
1 // RUN: %llvmgcc -std=c99 %s -S -o - | llvm-as | \
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 ) ;