mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 13:26:08 +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 `{{.*}} `.
24 lines
672 B
C++
24 lines
672 B
C++
// RUN: %clang_cc1 -triple i386-unknown-unknown -std=c++11 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
namespace Test1 {
|
|
struct A { virtual ~A() {} };
|
|
struct B final : A {};
|
|
struct C : A { virtual ~C() final {} };
|
|
struct D { virtual ~D() final = 0; };
|
|
// CHECK-LABEL: define{{.*}} void @_ZN5Test13fooEPNS_1BE
|
|
void foo(B *b) {
|
|
// CHECK: call void @_ZN5Test11BD1Ev
|
|
delete b;
|
|
}
|
|
// CHECK-LABEL: define{{.*}} void @_ZN5Test14foo2EPNS_1CE
|
|
void foo2(C *c) {
|
|
// CHECK: call void @_ZN5Test11CD1Ev
|
|
delete c;
|
|
}
|
|
// CHECK-LABEL: define{{.*}} void @_ZN5Test14evilEPNS_1DE
|
|
void evil(D *p) {
|
|
// CHECK-NOT: call void @_ZN5Test11DD1Ev
|
|
delete p;
|
|
}
|
|
}
|