rust/tests/mir-opt/asm_unwind_panic_abort.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
367 B
Rust
Raw Normal View History

// skip-filecheck
//! Tests that unwinding from an asm block is caught and forced to abort
//! when `-C panic=abort`.
// only-x86_64
// compile-flags: -C panic=abort
// no-prefer-dynamic
#![feature(asm_unwind)]
// EMIT_MIR asm_unwind_panic_abort.main.AbortUnwindingCalls.after.mir
fn main() {
unsafe {
std::arch::asm!("", options(may_unwind));
}
}