rust/tests/ui/asm/x86_64/issue-89875.rs
2023-02-01 08:53:02 +01:00

16 lines
216 B
Rust

// build-pass
// needs-asm-support
// only-x86_64
use std::arch::asm;
#[target_feature(enable = "avx")]
fn main() {
unsafe {
asm!(
"/* {} */",
out(ymm_reg) _,
);
}
}