1 // RUN: clang -emit-llvm -S -o %t %s && 2 // RUN: grep '@f0' %t | count 0 && 3 // RUN: clang -mllvm -disable-llvm-optzns -emit-llvm -S -o %t %s && 4 // RUN: grep '@f0' %t | count 2 5 6 //static int f0() { 7 static int __attribute__((always_inline)) f0() { 8 return 1; 9 } 10 11 int f1() { 12 return f0(); 13 } 14