mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-13 17:37:00 +00:00

For a default visibility external linkage definition, dso_local is set for ELF -fno-pic/-fpie and COFF and Mach-O. Since default clang -cc1 for ELF is similar to -fpic ("PIC Level" is not set), this nuance causes unneeded binary format differences. To make emitted IR similar, ELF -cc1 -fpic will default to -fno-semantic-interposition, which sets dso_local for default visibility external linkage definitions. To make this flip smooth and enable future (dso_local as definition default), this patch replaces (function) `define ` with `define{{.*}} `, (variable/constant/alias) `= ` with `={{.*}} `, or inserts appropriate `{{.*}} `.
37 lines
711 B
Objective-C
37 lines
711 B
Objective-C
// RUN: %clang_cc1 -triple x86_64 -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
struct s0 {
|
|
int x;
|
|
};
|
|
|
|
@interface C0
|
|
@property int x0;
|
|
@property _Complex int x1;
|
|
@property struct s0 x2;
|
|
@end
|
|
|
|
// Check that we get exactly the message sends we expect, and no more.
|
|
//
|
|
// CHECK-LABEL: define{{.*}} void @f0
|
|
void f0(C0 *a) {
|
|
// CHECK: objc_msgSend
|
|
int l0 = (a.x0 = 1);
|
|
|
|
// CHECK: objc_msgSend
|
|
_Complex int l1 = (a.x1 = 1);
|
|
|
|
// CHECK: objc_msgSend
|
|
struct s0 l2 = (a.x2 = (struct s0) { 1 });
|
|
|
|
// CHECK: objc_msgSend
|
|
// CHECK: objc_msgSend
|
|
int l3 = (a.x0 += 1);
|
|
|
|
// CHECK: objc_msgSend
|
|
// CHECK: objc_msgSend
|
|
_Complex int l4 = (a.x1 += 1);
|
|
|
|
// CHECK-NOT: objc_msgSend
|
|
// CHECK: }
|
|
}
|