1
Fork 0
rust/tests/ui/simd/empty-simd-vector-in-operand.stderr
Hadrien Eyraud ff699ce9f5 fix: running the test only on x86_64.
The test was failing on aarch64-apple-darwin.
2025-03-23 19:42:14 +01:00

15 lines
431 B
Text

error[E0075]: SIMD vector cannot be empty
--> $DIR/empty-simd-vector-in-operand.rs:7:1
|
LL | struct A();
| ^^^^^^^^
error: use of empty SIMD vector `A`
--> $DIR/empty-simd-vector-in-operand.rs:12:43
|
LL | std::arch::asm!("{}", in(xmm_reg) A());
| ^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0075`.