1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-26 22:42:46 +02:00
llvm-mirror/test/CFrontend/2007-06-05-NoInlineAttribute.c
Tanya Lattner c7e990a524 Really use attribute.
llvm-svn: 37480
2007-06-06 21:00:46 +00:00

14 lines
228 B
C

// RUN: %llvmgxx -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);
}