
For a definition (of most linkage types), dso_local is set for ELF -fno-pic/-fpie and COFF, but not for Mach-O. This nuance causes unneeded binary format differences. This patch replaces (function) `define ` with `define{{.*}} `, (variable/constant/alias) `= ` with `={{.*}} `, or inserts appropriate `{{.*}} ` if there is an explicit linkage. * Clang will set dso_local for Mach-O, which is currently implied by TargetMachine.cpp. This will make COFF/Mach-O and executable ELF similar. * Eventually I hope we can make dso_local the textual LLVM IR default (write explicit "dso_preemptable" when applicable) and -fpic ELF will be similar to everything else. This patch helps move toward that goal.
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fexceptions -fblocks | FileCheck %s
|
|
// RUN: %clang_cc1 -triple armv7-apple-unknown -emit-llvm -o - %s -fexceptions -exception-model=sjlj -fblocks | FileCheck %s -check-prefix=CHECK-ARM
|
|
|
|
// rdar://problem/8621849
|
|
void test1() {
|
|
extern void test1_helper(void (^)(int));
|
|
|
|
// CHECK-LABEL: define{{.*}} void @test1() {{.*}} personality i8* bitcast (i32 (...)* @__gcc_personality_v0 to i8*)
|
|
// CHECK-ARM-LABEL: define{{.*}} arm_aapcscc void @test1() {{.*}} personality i8* bitcast (i32 (...)* @__gcc_personality_sj0 to i8*)
|
|
|
|
__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 { i8*, i32 }
|
|
// CHECK-NEXT: cleanup
|
|
// CHECK-ARM: landingpad { i8*, i32 }
|
|
// CHECK-ARM-NEXT: cleanup
|
|
}
|
|
|
|
void test2_helper();
|
|
void test2() {
|
|
__block int x = 10;
|
|
^{ (void)x; };
|
|
test2_helper(5, 6, 7);
|
|
}
|
|
void test2_helper(int x, int y) {
|
|
}
|
|
// CHECK: invoke void @test2_helper(i32 5, i32 6)
|