blob: b11b3c779684e6b4acf4c4174cc5d36cee0d3bc6 [file] [log] [blame]
Devang Patel7360df12008-09-03 17:05:49 +00001// RUN: %llvmgcc -O2 -c -emit-llvm %s -o - | llvm-dis | grep call
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
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