This reverts commit d618f1c3b1.
This commit wasn't reviewed ahead of time and significant concerns were
raised immediately after it landed. According to our developer policy
this warrants immediate revert of the commit.
https://llvm.org/docs/DeveloperPolicy.html#patch-reversion-policy
Differential Revision: https://reviews.llvm.org/D155509
21 lines
674 B
C
21 lines
674 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 (void)
|
|
{
|
|
_Complex double c;
|
|
BLOCK b = ^() {
|
|
_Complex double z;
|
|
z = z + c;
|
|
};
|
|
b();
|
|
}
|
|
|
|
// CHECK-LABEL: define internal void @__main_block_invoke
|
|
// CHECK: [[C1:%.*]] = alloca { double, double }, align 8
|
|
// CHECK: [[RP:%.*]] = getelementptr inbounds { double, double }, ptr [[C1]], i32 0, i32 0
|
|
// CHECK-NEXT: [[R:%.*]] = load double, ptr [[RP]]
|
|
// CHECK-NEXT: [[IP:%.*]] = getelementptr inbounds { double, double }, ptr [[C1]], i32 0, i32 1
|
|
// CHECK-NEXT: [[I:%.*]] = load double, ptr [[IP]]
|