summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/asm_unwind_panic_abort.rs
blob: 8201d54348a839fa4c09f6648350bb95fe9a581c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Tests that unwinding from an asm block is caught and forced to abort
//! when `-C panic=abort`.

// min-llvm-version: 13.0.0
// 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));
    }
}