2024-06-08 06:26:37 -05:00
|
|
|
//@ revisions: NORMAL WIN
|
2022-05-29 02:25:14 -05:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
2023-08-26 19:42:59 -05:00
|
|
|
//@[NORMAL] ignore-windows
|
2024-06-08 06:26:37 -05:00
|
|
|
//@[WIN] only-windows
|
|
|
|
//@[WIN] only-x86_64
|
2022-05-29 02:25:14 -05:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(rust_cold_cc)]
|
|
|
|
|
2022-06-05 18:02:10 -05:00
|
|
|
// wasm marks the definition as `dso_local`, so allow that as optional.
|
|
|
|
|
2023-08-26 19:42:59 -05:00
|
|
|
// NORMAL: define{{( dso_local)?}} preserve_mostcc void @this_should_never_happen(i16
|
|
|
|
// NORMAL: call preserve_mostcc void @this_should_never_happen(i16
|
|
|
|
|
|
|
|
// See the comment in `Target::adjust_abi` for why this differs
|
|
|
|
|
2024-06-08 06:26:37 -05:00
|
|
|
// WIN: define void @this_should_never_happen(i16
|
|
|
|
// WIN: call void @this_should_never_happen(i16
|
2022-05-29 02:25:14 -05:00
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
pub extern "rust-cold" fn this_should_never_happen(x: u16) {}
|
|
|
|
|
|
|
|
pub fn do_things(x: u16) {
|
|
|
|
if x == 12345 {
|
|
|
|
this_should_never_happen(54321);
|
|
|
|
}
|
|
|
|
}
|