2021-10-07 19:42:18 +00:00
|
|
|
error: register class `ymm_reg` requires the `avx` target feature
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/target-feature-attr.rs:18:40
|
2021-10-07 19:42:18 +00:00
|
|
|
|
|
|
|
|
LL | asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `ymm_reg` requires the `avx` target feature
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/target-feature-attr.rs:18:55
|
2021-10-07 19:42:18 +00:00
|
|
|
|
|
|
|
|
LL | asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `ymm_reg` requires the `avx` target feature
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/target-feature-attr.rs:18:70
|
2021-10-07 19:42:18 +00:00
|
|
|
|
|
|
|
|
LL | asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: register class `kreg` requires at least one of the following target features: avx512bw, avx512f
|
2021-12-10 00:15:33 +00:00
|
|
|
--> $DIR/target-feature-attr.rs:33:23
|
2021-10-07 19:42:18 +00:00
|
|
|
|
|
|
|
|
LL | asm!("/* {0} */", in(kreg) x);
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|