aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/always_inline.c
blob: cb32e3b62181004d78c2488e5036967db14cb367 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: clang -emit-llvm -S -o %t %s &&
// RUN: grep '@f0' %t | count 0 &&
// RUN: clang -mllvm -disable-llvm-optzns -emit-llvm -S -o %t %s &&
// RUN: grep '@f0' %t | count 2

//static int f0() { 
static int __attribute__((always_inline)) f0() { 
  return 1;
}

int f1() {
  return f0();
}