1 // RUN: %clang -emit-llvm -S -o %t %s
2 // RUN: not grep '@f0' %t
3 // RUN: not grep 'call ' %t
4 // RUN: %clang -Xclang -disable-llvm-passes -emit-llvm -S -o %t %s
5 // RUN: grep '@f0' %t | count 2
8 static int __attribute__((always_inline
)) f0() {
17 inline int f2() __attribute__((always_inline
));
18 int f2() { return 7; }
19 int f3(void) { return f2(); }