literal helper functions. All helper functions (global and locals) use block_invoke as their prefix. Local literal helper names are prefixed by their enclosing mangled function names. Blocks in non-local initializers (e.g. a global variable or a C++11 field) are prefixed by their mangled variable name. The descriminator number added to end of the name starts off with blank (for first block) and _<N> (for the N+2-th block). llvm-svn: 159206
21 lines
648 B
C
21 lines
648 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 | FileCheck %s
|
|
// rdar://10033986
|
|
|
|
typedef void (^BLOCK)(void);
|
|
int main ()
|
|
{
|
|
_Complex double c;
|
|
BLOCK b = ^() {
|
|
_Complex double z;
|
|
z = z + c;
|
|
};
|
|
b();
|
|
}
|
|
|
|
// CHECK: define internal void @__main_block_invoke
|
|
// CHECK: [[C1:%.*]] = alloca { double, double }, align 8
|
|
// CHECK: [[RP:%.*]] = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 0
|
|
// CHECK-NEXT: [[R:%.*]] = load double* [[RP]]
|
|
// CHECK-NEXT: [[IP:%.*]] = getelementptr inbounds { double, double }* [[C1]], i32 0, i32 1
|
|
// CHECK-NEXT: [[I:%.*]] = load double* [[IP]]
|