Add include needed for MSVC.
[clang/acc.git] / test / CodeGen / always_inline.c
blobc12b45404d2dde94d65dd2cb33fa06bd144e6525
1 // RUN: clang -emit-llvm -S -o %t %s &&
2 // RUN: not grep '@f0' %t &&
3 // RUN: not grep 'call ' %t &&
4 // RUN: clang -mllvm -disable-llvm-optzns -emit-llvm -S -o %t %s &&
5 // RUN: grep '@f0' %t | count 2
7 //static int f0() {
8 static int __attribute__((always_inline)) f0() {
9 return 1;
12 int f1() {
13 return f0();
16 // PR4372
17 inline int f2() __attribute__((always_inline));
18 int f2() { return 7; }
19 int f3(void) { return f2(); }