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.
36 lines
822 B
C++
36 lines
822 B
C++
// RUN: %clang_cc1 -x c++ -triple x86_64-apple-darwin10 -emit-llvm -o - %s -fsanitize=nullability-assign | FileCheck %s
|
|
|
|
struct S1 {
|
|
int *_Nonnull p;
|
|
};
|
|
|
|
struct S2 {
|
|
S1 s1;
|
|
};
|
|
|
|
union U1 {
|
|
S1 s1;
|
|
S2 s2;
|
|
};
|
|
|
|
// CHECK-LABEL: define{{.*}} void @{{.*}}f1
|
|
void f1(int *p) {
|
|
U1 u;
|
|
|
|
// CHECK: [[ICMP:%.*]] = icmp ne i32* {{.*}}, null, !nosanitize
|
|
// CHECK-NEXT: br i1 [[ICMP]], {{.*}}, !nosanitize
|
|
// CHECK: call void @__ubsan_handle_type_mismatch{{.*}} !nosanitize
|
|
// CHECK: store
|
|
u.s1.p = p;
|
|
|
|
// CHECK: [[ICMP:%.*]] = icmp ne i32* {{.*}}, null, !nosanitize
|
|
// CHECK-NEXT: br i1 [[ICMP]], {{.*}}, !nosanitize
|
|
// CHECK: call void @__ubsan_handle_type_mismatch{{.*}} !nosanitize
|
|
// CHECK: store
|
|
u.s2.s1.p = p;
|
|
|
|
// CHECK-NOT: __ubsan_handle_type_mismatch
|
|
// CHECK-NOT: store
|
|
// CHECK: ret void
|
|
}
|