]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd/intrinsic/generic-arithmetic-2.stderr
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / simd / intrinsic / generic-arithmetic-2.stderr
1 error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `i32`
2   --> $DIR/generic-arithmetic-2.rs:69:9
3    |
4 LL |         simd_add(0, 0);
5    |         ^^^^^^^^^^^^^^
6
7 error[E0511]: invalid monomorphization of `simd_sub` intrinsic: expected SIMD input type, found non-SIMD `i32`
8   --> $DIR/generic-arithmetic-2.rs:71:9
9    |
10 LL |         simd_sub(0, 0);
11    |         ^^^^^^^^^^^^^^
12
13 error[E0511]: invalid monomorphization of `simd_mul` intrinsic: expected SIMD input type, found non-SIMD `i32`
14   --> $DIR/generic-arithmetic-2.rs:73:9
15    |
16 LL |         simd_mul(0, 0);
17    |         ^^^^^^^^^^^^^^
18
19 error[E0511]: invalid monomorphization of `simd_div` intrinsic: expected SIMD input type, found non-SIMD `i32`
20   --> $DIR/generic-arithmetic-2.rs:75:9
21    |
22 LL |         simd_div(0, 0);
23    |         ^^^^^^^^^^^^^^
24
25 error[E0511]: invalid monomorphization of `simd_shl` intrinsic: expected SIMD input type, found non-SIMD `i32`
26   --> $DIR/generic-arithmetic-2.rs:77:9
27    |
28 LL |         simd_shl(0, 0);
29    |         ^^^^^^^^^^^^^^
30
31 error[E0511]: invalid monomorphization of `simd_shr` intrinsic: expected SIMD input type, found non-SIMD `i32`
32   --> $DIR/generic-arithmetic-2.rs:79:9
33    |
34 LL |         simd_shr(0, 0);
35    |         ^^^^^^^^^^^^^^
36
37 error[E0511]: invalid monomorphization of `simd_and` intrinsic: expected SIMD input type, found non-SIMD `i32`
38   --> $DIR/generic-arithmetic-2.rs:81:9
39    |
40 LL |         simd_and(0, 0);
41    |         ^^^^^^^^^^^^^^
42
43 error[E0511]: invalid monomorphization of `simd_or` intrinsic: expected SIMD input type, found non-SIMD `i32`
44   --> $DIR/generic-arithmetic-2.rs:83:9
45    |
46 LL |         simd_or(0, 0);
47    |         ^^^^^^^^^^^^^
48
49 error[E0511]: invalid monomorphization of `simd_xor` intrinsic: expected SIMD input type, found non-SIMD `i32`
50   --> $DIR/generic-arithmetic-2.rs:85:9
51    |
52 LL |         simd_xor(0, 0);
53    |         ^^^^^^^^^^^^^^
54
55 error[E0511]: invalid monomorphization of `simd_neg` intrinsic: expected SIMD input type, found non-SIMD `i32`
56   --> $DIR/generic-arithmetic-2.rs:88:9
57    |
58 LL |         simd_neg(0);
59    |         ^^^^^^^^^^^
60
61 error[E0511]: invalid monomorphization of `simd_shl` intrinsic: unsupported operation on `f32x4` with element `f32`
62   --> $DIR/generic-arithmetic-2.rs:92:9
63    |
64 LL |         simd_shl(z, z);
65    |         ^^^^^^^^^^^^^^
66
67 error[E0511]: invalid monomorphization of `simd_shr` intrinsic: unsupported operation on `f32x4` with element `f32`
68   --> $DIR/generic-arithmetic-2.rs:94:9
69    |
70 LL |         simd_shr(z, z);
71    |         ^^^^^^^^^^^^^^
72
73 error[E0511]: invalid monomorphization of `simd_and` intrinsic: unsupported operation on `f32x4` with element `f32`
74   --> $DIR/generic-arithmetic-2.rs:96:9
75    |
76 LL |         simd_and(z, z);
77    |         ^^^^^^^^^^^^^^
78
79 error[E0511]: invalid monomorphization of `simd_or` intrinsic: unsupported operation on `f32x4` with element `f32`
80   --> $DIR/generic-arithmetic-2.rs:98:9
81    |
82 LL |         simd_or(z, z);
83    |         ^^^^^^^^^^^^^
84
85 error[E0511]: invalid monomorphization of `simd_xor` intrinsic: unsupported operation on `f32x4` with element `f32`
86   --> $DIR/generic-arithmetic-2.rs:100:9
87    |
88 LL |         simd_xor(z, z);
89    |         ^^^^^^^^^^^^^^
90
91 error: aborting due to 15 previous errors
92
93 For more information about this error, try `rustc --explain E0511`.