Skip to content

Commit cf6efe8

Browse files
committed
Add test case
1 parent 160b194 commit cf6efe8

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
use std::sync::atomic::{AtomicPtr, Ordering};
2+
3+
#[inline(always)]
4+
pub fn memrchr() {
5+
fn detect() {}
6+
7+
static CROSS_CRATE_STATIC_ITEM: AtomicPtr<()> = AtomicPtr::new(detect as *mut ());
8+
9+
unsafe {
10+
let fun = CROSS_CRATE_STATIC_ITEM.load(Ordering::SeqCst);
11+
std::mem::transmute::<*mut (), fn()>(fun)()
12+
}
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// compile-flags: -O -C lto=thin -C prefer-dynamic=no
2+
// only-windows
3+
// aux-build:static_dllimport_aux.rs
4+
5+
// Test that on Windows, when performing ThinLTO, we do not mark cross-crate static items with
6+
// dllimport because lld does not fix the symbol names for us.
7+
8+
extern crate static_dllimport_aux;
9+
10+
// CHECK-LABEL: @{{.+}}CROSS_CRATE_STATIC_ITEM{{.+}} =
11+
// CHECK-SAME: external dllimport local_unnamed_addr global %"{{.+}}::AtomicPtr
12+
13+
pub fn main() {
14+
static_dllimport_aux::memrchr();
15+
}

0 commit comments

Comments
 (0)