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
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -Wno-strict-prototypes -emit-llvm -o - %s -fexceptions -fblocks | FileCheck %s
|
|
// RUN: %clang_cc1 -triple armv7-apple-unknown -Wno-strict-prototypes -emit-llvm -o - %s -fexceptions -exception-model=sjlj -fblocks | FileCheck %s -check-prefix=CHECK-ARM
|
|
|
|
// rdar://problem/8621849
|
|
void test1(void) {
|
|
extern void test1_helper(void (^)(int));
|
|
|
|
// CHECK-LABEL: define{{.*}} void @test1() {{.*}} personality ptr @__gcc_personality_v0
|
|
// CHECK-ARM-LABEL: define{{.*}} arm_aapcscc void @test1() {{.*}} personality ptr @__gcc_personality_sj0
|
|
|
|
__block int x = 10;
|
|
|
|
// CHECK: invoke void @test1_helper(
|
|
// CHECK-ARM: invoke arm_aapcscc void @test1_helper(
|
|
test1_helper(^(int v) { x = v; });
|
|
|
|
// CHECK: landingpad { ptr, i32 }
|
|
// CHECK-NEXT: cleanup
|
|
// CHECK-ARM: landingpad { ptr, i32 }
|
|
// CHECK-ARM-NEXT: cleanup
|
|
}
|
|
|
|
void test2_helper();
|
|
void test2(void) {
|
|
__block int x = 10;
|
|
^{ (void)x; };
|
|
test2_helper(5, 6, 7);
|
|
}
|
|
void test2_helper(int x, int y) {
|
|
}
|
|
// CHECK: invoke void @test2_helper(i32 noundef 5, i32 noundef 6)
|