1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// build-pass // needs-asm-support // only-x86_64 #![feature(target_feature_11)] use std::arch::asm; #[target_feature(enable = "avx")] fn foo() { unsafe { asm!( "/* {} */", out(ymm_reg) _, ); } } fn main() {}