f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
27 lines
560 B
C
27 lines
560 B
C
// RUN: %clang_cc1 -emit-llvm -o - -triple x86_64-apple-darwin10 %s | FileCheck %s
|
|
|
|
// Ensure that we don't emit available_externally functions at -O0.
|
|
int x;
|
|
|
|
inline void f0(int y) { x = y; }
|
|
|
|
// CHECK-LABEL: define void @test()
|
|
// CHECK: declare void @f0(i32)
|
|
void test() {
|
|
f0(17);
|
|
}
|
|
|
|
inline int __attribute__((always_inline)) f1(int x) {
|
|
int blarg = 0;
|
|
for (int i = 0; i < x; ++i)
|
|
blarg = blarg + x * i;
|
|
return blarg;
|
|
}
|
|
|
|
// CHECK: @test1
|
|
int test1(int x) {
|
|
// CHECK: br i1
|
|
// CHECK-NOT: call {{.*}} @f1
|
|
// CHECK: ret i32
|
|
return f1(x);
|
|
}
|