]> git.lizzy.rs Git - rust.git/blob - src/test/ui/asm/x86_64/target-feature-attr.stderr
Auto merge of #98471 - wesleywiser:update_measureme, r=Mark-Simulacrum
[rust.git] / src / test / ui / asm / x86_64 / target-feature-attr.stderr
1 error: register class `ymm_reg` requires the `avx` target feature
2   --> $DIR/target-feature-attr.rs:18:40
3    |
4 LL |     asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
5    |                                        ^^^^^^^^^^^^^
6
7 error: register class `ymm_reg` requires the `avx` target feature
8   --> $DIR/target-feature-attr.rs:18:55
9    |
10 LL |     asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
11    |                                                       ^^^^^^^^^^^^^
12
13 error: register class `ymm_reg` requires the `avx` target feature
14   --> $DIR/target-feature-attr.rs:18:70
15    |
16 LL |     asm!("vaddps {2:y}, {0:y}, {1:y}", in(ymm_reg) x, in(ymm_reg) y, lateout(ymm_reg) x);
17    |                                                                      ^^^^^^^^^^^^^^^^^^
18
19 error: register class `kreg` requires at least one of the following target features: avx512bw, avx512f
20   --> $DIR/target-feature-attr.rs:33:23
21    |
22 LL |     asm!("/* {0} */", in(kreg) x);
23    |                       ^^^^^^^^^^
24
25 error: aborting due to 4 previous errors
26