blob: 22f6c7a20ef20b07886ebf11fca0b5bb78883bb3 [file] [log] [blame]
Evan Chengb691b702009-01-29 09:31:54 +00001// RUN: %llvmgcc -S %s -o - | grep call | not grep foo
2
3void bar() {
4}
5
6inline void __attribute__((__always_inline__)) foo() {
7 bar();
8}
9
10void i_want_bar() {
11 foo();
12}