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)
22 lines
366 B
Rust
22 lines
366 B
Rust
// no-system-llvm
|
|
// compile-flags: -O
|
|
|
|
#![crate_type="lib"]
|
|
|
|
struct A;
|
|
|
|
impl Drop for A {
|
|
fn drop(&mut self) {
|
|
extern "C" { fn foo(); }
|
|
unsafe { foo(); }
|
|
}
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn a(a: Box<i32>) {
|
|
// CHECK-LABEL: define{{.*}}void @a
|
|
// CHECK: call void @__rust_dealloc
|
|
// CHECK-NEXT: call void @foo
|
|
let _a = A;
|
|
drop(a);
|
|
}
|