
This should have no real effect in most cases, as e.g. `hidden`
visibility already implies `dso_local` (or at least LLVM IR does not
preserve the `dso_local` setting if the item is already `hidden`), but
it should fix `-Crelocation-model=static` and improve codegen in
executables.
Note that this PR does not exhaustively port the logic in [clang]. Only
the obviously correct portion and what is necessary to fix a regression
from LLVM 12 that relates to `-Crelocation_model=static`.
Fixes #83335
[clang]: 3001d080c8/clang/lib/CodeGen/CodeGenModule.cpp (L945-L1039)
43 lines
769 B
Rust
43 lines
769 B
Rust
// compile-flags: -C no-prepopulate-passes
|
|
|
|
#![crate_type = "staticlib"]
|
|
|
|
// CHECK: define{{.*}}void @a()
|
|
#[no_mangle]
|
|
#[inline]
|
|
pub extern "C" fn a() {}
|
|
|
|
// CHECK: define{{.*}}void @b()
|
|
#[export_name = "b"]
|
|
#[inline]
|
|
pub extern "C" fn b() {}
|
|
|
|
// CHECK: define{{.*}}void @c()
|
|
#[no_mangle]
|
|
#[inline]
|
|
extern "C" fn c() {}
|
|
|
|
// CHECK: define{{.*}}void @d()
|
|
#[export_name = "d"]
|
|
#[inline]
|
|
extern "C" fn d() {}
|
|
|
|
// CHECK: define{{.*}}void @e()
|
|
#[no_mangle]
|
|
#[inline(always)]
|
|
pub extern "C" fn e() {}
|
|
|
|
// CHECK: define{{.*}}void @f()
|
|
#[export_name = "f"]
|
|
#[inline(always)]
|
|
pub extern "C" fn f() {}
|
|
|
|
// CHECK: define{{.*}}void @g()
|
|
#[no_mangle]
|
|
#[inline(always)]
|
|
extern "C" fn g() {}
|
|
|
|
// CHECK: define{{.*}}void @h()
|
|
#[export_name = "h"]
|
|
#[inline(always)]
|
|
extern "C" fn h() {}
|