On x86 the following does not compile: ```rust #![feature(asm)] #[target_feature(enable="avx")] pub unsafe fn foo() { let mut x = 0; asm!("vmovaps {}, {}", lateout(ymm_reg) x, in(ymm_reg) x); } ``` ubt it does compile with `-Ctarget-feature=+avx` specified. Both should work? <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":"asquared31415"}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->