PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2007-06-05-NoInlineAttribute.c
blobb11b3c779684e6b4acf4c4174cc5d36cee0d3bc6
1 // RUN: %llvmgcc -O2 -c -emit-llvm %s -o - | llvm-dis | grep call
3 static int bar(int x, int y) __attribute__((noinline));
5 static int bar(int x, int y)
7 return x + y;
10 int foo(int a, int b) {
11 return bar(b, a);