Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
asm
/
may_unwind.rs
blob: 0fef317a2cfd1d530b3a7a268ba4cd79c813c812 [
file
] [
log
] [
blame
]
//@ run-pass
//@ needs-asm-support
//@ needs-unwind
//@ ignore-backends: gcc
#![
feature
(
asm_unwind
)]
use
std
::
arch
::
asm
;
fn
main
()
{
unsafe
{
asm
!(
""
,
options
(
may_unwind
))
};
}