2022-05-16 23:51:20 -05:00
|
|
|
//! Tests that unwinding from an asm block is caught and forced to abort
|
|
|
|
//! when `-C panic=abort`.
|
|
|
|
|
|
|
|
//@ compile-flags: -C panic=abort
|
2024-03-17 10:23:24 -05:00
|
|
|
//@ needs-asm-support
|
2022-05-16 23:51:20 -05:00
|
|
|
|
|
|
|
#![feature(asm_unwind)]
|
|
|
|
|
|
|
|
// EMIT_MIR asm_unwind_panic_abort.main.AbortUnwindingCalls.after.mir
|
|
|
|
fn main() {
|
2023-10-16 13:02:18 -05:00
|
|
|
// CHECK-LABEL: fn main(
|
|
|
|
// CHECK: asm!(
|
|
|
|
// CHECK-SAME: unwind terminate(abi)
|
2022-05-16 23:51:20 -05:00
|
|
|
unsafe {
|
|
|
|
std::arch::asm!("", options(may_unwind));
|
|
|
|
}
|
|
|
|
}
|