blob: 26aad88e814687edd24ca79f0d0b26f279d23c42 [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 -O2 -emit-llvm %s -o - | grep call
2
3static int bar(int x, int y) __attribute__((noinline));
4
5static int bar(int x, int y)
6{
7 return x + y;
8}
9
10int foo(int a, int b) {
11 return bar(b, a);
12}
13