Add a regression test for issue-89875

This commit is contained in:
Yuki Okushi 2021-10-20 04:50:34 +09:00
parent 630df7c54a
commit bd309e4628
No known key found for this signature in database
GPG Key ID: DABA5B072961C18A
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// build-pass
// only-x86_64
#![feature(asm, target_feature_11)]
#[target_feature(enable = "avx")]
fn main() {
unsafe {
asm!(
"/* {} */",
out(ymm_reg) _,
);
}
}