]> git.proxmox.com Git - rustc.git/blob - src/test/ui/simd-intrinsic/simd-intrinsic-generic-arithmetic-saturating.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / simd-intrinsic / simd-intrinsic-generic-arithmetic-saturating.stderr
1 error[E0511]: invalid monomorphization of `simd_saturating_add` intrinsic: expected element type `f32` of vector type `f32x4` to be a signed or unsigned integer type
2 --> $DIR/simd-intrinsic-generic-arithmetic-saturating.rs:33:9
3 |
4 LL | simd_saturating_add(z, z);
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error[E0511]: invalid monomorphization of `simd_saturating_sub` intrinsic: expected element type `f32` of vector type `f32x4` to be a signed or unsigned integer type
8 --> $DIR/simd-intrinsic-generic-arithmetic-saturating.rs:35:9
9 |
10 LL | simd_saturating_sub(z, z);
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0511`.