mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 16:07:49 +00:00
b44b922bc1
llvm-svn: 42350
14 lines
228 B
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);
|
|
}
|
|
|