Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git] / test / FrontendC / 2007-06-05-NoInlineAttribute.c
blob9543538fb1b9e7b1e73d67d6b4eaf173e1292f00
1 // RUN: %llvmgcc -O2 -S %s -o - | 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);