summaryrefslogtreecommitdiffstats
path: root/src/test/ui/asm/x86_64/target-feature-attr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/asm/x86_64/target-feature-attr.stderr')
-rw-r--r--src/test/ui/asm/x86_64/target-feature-attr.stderr26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/asm/x86_64/target-feature-attr.stderr b/src/test/ui/asm/x86_64/target-feature-attr.stderr
new file mode 100644
index 000000000..c852726ee
--- /dev/null
+++ b/src/test/ui/asm/x86_64/target-feature-attr.stderr
@@ -0,0 +1,26 @@
+error: register class `ymm_reg` requires the `avx` target feature
+ --> $DIR/target-feature-attr.rs:18:40
+ |
+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
+ --> $DIR/target-feature-attr.rs:18:55
+ |
+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
+ --> $DIR/target-feature-attr.rs:18:70
+ |
+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
+ --> $DIR/target-feature-attr.rs:33:23
+ |
+LL | asm!("/* {0} */", in(kreg) x);
+ | ^^^^^^^^^^
+
+error: aborting due to 4 previous errors
+