blob: dc74be5e8c218beec28d3e2fbd6f15f718946140 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %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}