hanchenye-llvm-project/llvm/test/CFrontend/2007-06-05-NoInlineAttribute.c

14 lines
228 B
C

// RUN: %llvmgcc -c -emit-llvm %s -o - | llvm-dis | grep llvm.noinline
static int bar(int x, int y) __attribute__((noinline));
static int bar(int x, int y)
{
return x + y;
}
int foo(int a, int b) {
return bar(b, a);
}