|
1 | 1 | error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
2 |
| - --> $DIR/generic-arithmetic-2.rs:64:9 |
| 2 | + --> $DIR/generic-arithmetic-2.rs:68:9 |
3 | 3 | |
|
4 | 4 | LL | simd_add(0, 0);
|
5 | 5 | | ^^^^^^^^^^^^^^
|
6 | 6 |
|
7 | 7 | error[E0511]: invalid monomorphization of `simd_sub` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
8 |
| - --> $DIR/generic-arithmetic-2.rs:66:9 |
| 8 | + --> $DIR/generic-arithmetic-2.rs:70:9 |
9 | 9 | |
|
10 | 10 | LL | simd_sub(0, 0);
|
11 | 11 | | ^^^^^^^^^^^^^^
|
12 | 12 |
|
13 | 13 | error[E0511]: invalid monomorphization of `simd_mul` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
14 |
| - --> $DIR/generic-arithmetic-2.rs:68:9 |
| 14 | + --> $DIR/generic-arithmetic-2.rs:72:9 |
15 | 15 | |
|
16 | 16 | LL | simd_mul(0, 0);
|
17 | 17 | | ^^^^^^^^^^^^^^
|
18 | 18 |
|
19 | 19 | error[E0511]: invalid monomorphization of `simd_div` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
20 |
| - --> $DIR/generic-arithmetic-2.rs:70:9 |
| 20 | + --> $DIR/generic-arithmetic-2.rs:74:9 |
21 | 21 | |
|
22 | 22 | LL | simd_div(0, 0);
|
23 | 23 | | ^^^^^^^^^^^^^^
|
24 | 24 |
|
25 | 25 | error[E0511]: invalid monomorphization of `simd_shl` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
26 |
| - --> $DIR/generic-arithmetic-2.rs:72:9 |
| 26 | + --> $DIR/generic-arithmetic-2.rs:76:9 |
27 | 27 | |
|
28 | 28 | LL | simd_shl(0, 0);
|
29 | 29 | | ^^^^^^^^^^^^^^
|
30 | 30 |
|
31 | 31 | error[E0511]: invalid monomorphization of `simd_shr` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
32 |
| - --> $DIR/generic-arithmetic-2.rs:74:9 |
| 32 | + --> $DIR/generic-arithmetic-2.rs:78:9 |
33 | 33 | |
|
34 | 34 | LL | simd_shr(0, 0);
|
35 | 35 | | ^^^^^^^^^^^^^^
|
36 | 36 |
|
| 37 | +error[E0511]: invalid monomorphization of `simd_funnel_shl` intrinsic: expected SIMD input type, found non-SIMD `i32` |
| 38 | + --> $DIR/generic-arithmetic-2.rs:80:9 |
| 39 | + | |
| 40 | +LL | simd_funnel_shl(0, 0, 0); |
| 41 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 42 | + |
| 43 | +error[E0511]: invalid monomorphization of `simd_funnel_shr` intrinsic: expected SIMD input type, found non-SIMD `i32` |
| 44 | + --> $DIR/generic-arithmetic-2.rs:82:9 |
| 45 | + | |
| 46 | +LL | simd_funnel_shr(0, 0, 0); |
| 47 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 48 | + |
37 | 49 | error[E0511]: invalid monomorphization of `simd_and` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
38 |
| - --> $DIR/generic-arithmetic-2.rs:76:9 |
| 50 | + --> $DIR/generic-arithmetic-2.rs:84:9 |
39 | 51 | |
|
40 | 52 | LL | simd_and(0, 0);
|
41 | 53 | | ^^^^^^^^^^^^^^
|
42 | 54 |
|
43 | 55 | error[E0511]: invalid monomorphization of `simd_or` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
44 |
| - --> $DIR/generic-arithmetic-2.rs:78:9 |
| 56 | + --> $DIR/generic-arithmetic-2.rs:86:9 |
45 | 57 | |
|
46 | 58 | LL | simd_or(0, 0);
|
47 | 59 | | ^^^^^^^^^^^^^
|
48 | 60 |
|
49 | 61 | error[E0511]: invalid monomorphization of `simd_xor` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
50 |
| - --> $DIR/generic-arithmetic-2.rs:80:9 |
| 62 | + --> $DIR/generic-arithmetic-2.rs:88:9 |
51 | 63 | |
|
52 | 64 | LL | simd_xor(0, 0);
|
53 | 65 | | ^^^^^^^^^^^^^^
|
54 | 66 |
|
55 | 67 | error[E0511]: invalid monomorphization of `simd_neg` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
56 |
| - --> $DIR/generic-arithmetic-2.rs:83:9 |
| 68 | + --> $DIR/generic-arithmetic-2.rs:91:9 |
57 | 69 | |
|
58 | 70 | LL | simd_neg(0);
|
59 | 71 | | ^^^^^^^^^^^
|
60 | 72 |
|
61 | 73 | error[E0511]: invalid monomorphization of `simd_bswap` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
62 |
| - --> $DIR/generic-arithmetic-2.rs:85:9 |
| 74 | + --> $DIR/generic-arithmetic-2.rs:93:9 |
63 | 75 | |
|
64 | 76 | LL | simd_bswap(0);
|
65 | 77 | | ^^^^^^^^^^^^^
|
66 | 78 |
|
67 | 79 | error[E0511]: invalid monomorphization of `simd_bitreverse` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
68 |
| - --> $DIR/generic-arithmetic-2.rs:87:9 |
| 80 | + --> $DIR/generic-arithmetic-2.rs:95:9 |
69 | 81 | |
|
70 | 82 | LL | simd_bitreverse(0);
|
71 | 83 | | ^^^^^^^^^^^^^^^^^^
|
72 | 84 |
|
73 | 85 | error[E0511]: invalid monomorphization of `simd_ctlz` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
74 |
| - --> $DIR/generic-arithmetic-2.rs:89:9 |
| 86 | + --> $DIR/generic-arithmetic-2.rs:97:9 |
75 | 87 | |
|
76 | 88 | LL | simd_ctlz(0);
|
77 | 89 | | ^^^^^^^^^^^^
|
78 | 90 |
|
79 | 91 | error[E0511]: invalid monomorphization of `simd_cttz` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
80 |
| - --> $DIR/generic-arithmetic-2.rs:91:9 |
| 92 | + --> $DIR/generic-arithmetic-2.rs:99:9 |
81 | 93 | |
|
82 | 94 | LL | simd_cttz(0);
|
83 | 95 | | ^^^^^^^^^^^^
|
84 | 96 |
|
85 | 97 | error[E0511]: invalid monomorphization of `simd_shl` intrinsic: unsupported operation on `f32x4` with element `f32`
|
86 |
| - --> $DIR/generic-arithmetic-2.rs:94:9 |
| 98 | + --> $DIR/generic-arithmetic-2.rs:102:9 |
87 | 99 | |
|
88 | 100 | LL | simd_shl(z, z);
|
89 | 101 | | ^^^^^^^^^^^^^^
|
90 | 102 |
|
91 | 103 | error[E0511]: invalid monomorphization of `simd_shr` intrinsic: unsupported operation on `f32x4` with element `f32`
|
92 |
| - --> $DIR/generic-arithmetic-2.rs:96:9 |
| 104 | + --> $DIR/generic-arithmetic-2.rs:104:9 |
93 | 105 | |
|
94 | 106 | LL | simd_shr(z, z);
|
95 | 107 | | ^^^^^^^^^^^^^^
|
96 | 108 |
|
| 109 | +error[E0511]: invalid monomorphization of `simd_funnel_shl` intrinsic: unsupported operation on `f32x4` with element `f32` |
| 110 | + --> $DIR/generic-arithmetic-2.rs:106:9 |
| 111 | + | |
| 112 | +LL | simd_funnel_shl(z, z, z); |
| 113 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 114 | + |
| 115 | +error[E0511]: invalid monomorphization of `simd_funnel_shr` intrinsic: unsupported operation on `f32x4` with element `f32` |
| 116 | + --> $DIR/generic-arithmetic-2.rs:108:9 |
| 117 | + | |
| 118 | +LL | simd_funnel_shr(z, z, z); |
| 119 | + | ^^^^^^^^^^^^^^^^^^^^^^^^ |
| 120 | + |
97 | 121 | error[E0511]: invalid monomorphization of `simd_and` intrinsic: unsupported operation on `f32x4` with element `f32`
|
98 |
| - --> $DIR/generic-arithmetic-2.rs:98:9 |
| 122 | + --> $DIR/generic-arithmetic-2.rs:110:9 |
99 | 123 | |
|
100 | 124 | LL | simd_and(z, z);
|
101 | 125 | | ^^^^^^^^^^^^^^
|
102 | 126 |
|
103 | 127 | error[E0511]: invalid monomorphization of `simd_or` intrinsic: unsupported operation on `f32x4` with element `f32`
|
104 |
| - --> $DIR/generic-arithmetic-2.rs:100:9 |
| 128 | + --> $DIR/generic-arithmetic-2.rs:112:9 |
105 | 129 | |
|
106 | 130 | LL | simd_or(z, z);
|
107 | 131 | | ^^^^^^^^^^^^^
|
108 | 132 |
|
109 | 133 | error[E0511]: invalid monomorphization of `simd_xor` intrinsic: unsupported operation on `f32x4` with element `f32`
|
110 |
| - --> $DIR/generic-arithmetic-2.rs:102:9 |
| 134 | + --> $DIR/generic-arithmetic-2.rs:114:9 |
111 | 135 | |
|
112 | 136 | LL | simd_xor(z, z);
|
113 | 137 | | ^^^^^^^^^^^^^^
|
114 | 138 |
|
115 | 139 | error[E0511]: invalid monomorphization of `simd_bswap` intrinsic: unsupported operation on `f32x4` with element `f32`
|
116 |
| - --> $DIR/generic-arithmetic-2.rs:104:9 |
| 140 | + --> $DIR/generic-arithmetic-2.rs:116:9 |
117 | 141 | |
|
118 | 142 | LL | simd_bswap(z);
|
119 | 143 | | ^^^^^^^^^^^^^
|
120 | 144 |
|
121 | 145 | error[E0511]: invalid monomorphization of `simd_bitreverse` intrinsic: unsupported operation on `f32x4` with element `f32`
|
122 |
| - --> $DIR/generic-arithmetic-2.rs:106:9 |
| 146 | + --> $DIR/generic-arithmetic-2.rs:118:9 |
123 | 147 | |
|
124 | 148 | LL | simd_bitreverse(z);
|
125 | 149 | | ^^^^^^^^^^^^^^^^^^
|
126 | 150 |
|
127 | 151 | error[E0511]: invalid monomorphization of `simd_ctlz` intrinsic: unsupported operation on `f32x4` with element `f32`
|
128 |
| - --> $DIR/generic-arithmetic-2.rs:108:9 |
| 152 | + --> $DIR/generic-arithmetic-2.rs:120:9 |
129 | 153 | |
|
130 | 154 | LL | simd_ctlz(z);
|
131 | 155 | | ^^^^^^^^^^^^
|
132 | 156 |
|
133 | 157 | error[E0511]: invalid monomorphization of `simd_ctpop` intrinsic: unsupported operation on `f32x4` with element `f32`
|
134 |
| - --> $DIR/generic-arithmetic-2.rs:110:9 |
| 158 | + --> $DIR/generic-arithmetic-2.rs:122:9 |
135 | 159 | |
|
136 | 160 | LL | simd_ctpop(z);
|
137 | 161 | | ^^^^^^^^^^^^^
|
138 | 162 |
|
139 | 163 | error[E0511]: invalid monomorphization of `simd_cttz` intrinsic: unsupported operation on `f32x4` with element `f32`
|
140 |
| - --> $DIR/generic-arithmetic-2.rs:112:9 |
| 164 | + --> $DIR/generic-arithmetic-2.rs:124:9 |
141 | 165 | |
|
142 | 166 | LL | simd_cttz(z);
|
143 | 167 | | ^^^^^^^^^^^^
|
144 | 168 |
|
145 |
| -error: aborting due to 24 previous errors |
| 169 | +error: aborting due to 28 previous errors |
146 | 170 |
|
147 | 171 | For more information about this error, try `rustc --explain E0511`.
|
0 commit comments