]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/may_unwind.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.git] / src / test / ui / asm / may_unwind.rs
1 // min-llvm-version: 13.0.0
2 // run-pass
3 // needs-asm-support
4
5 #![feature(asm_unwind)]
6
7 use std::arch::asm;
8
9 fn main() {
10     unsafe { asm!("", options(may_unwind)) };
11 }