rust/tests/mir-opt/inline/asm_unwind.rs

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

29 lines
632 B
Rust
Raw Normal View History

2022-10-07 06:59:26 -05:00
// Tests inlining of `may_unwind` inline assembly.
//
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2022-10-07 12:01:17 -05:00
//@ needs-asm-support
2023-10-22 11:27:43 -05:00
//@ needs-unwind
//@ compile-flags: -Zinline-mir-hint-threshold=1000 -C debuginfo=full
2022-10-07 06:59:26 -05:00
#![feature(asm_unwind)]
struct D;
impl Drop for D {
fn drop(&mut self) {}
}
#[inline]
2022-10-07 06:59:26 -05:00
fn foo() {
let _d = D;
unsafe { std::arch::asm!("", options(may_unwind)) };
}
// EMIT_MIR asm_unwind.main.Inline.diff
pub fn main() {
2023-10-20 13:10:30 -05:00
// CHECK-LABEL: fn main(
// CHECK: (inlined foo)
2023-10-22 11:27:43 -05:00
// CHECK: asm!("", options(MAY_UNWIND)) -> [return: {{bb.*}}, unwind: [[unwind:bb.*]]];
// CHECK: [[unwind]] (cleanup)
2022-10-07 06:59:26 -05:00
foo();
}