|
1 | 1 | error[E0511]: invalid monomorphization of `simd_insert` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
2 |
| - --> $DIR/generic-elements.rs:44:9 |
| 2 | + --> $DIR/generic-elements.rs:47:9 |
3 | 3 | |
|
4 | 4 | LL | simd_insert(0, 0, 0);
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^
|
6 | 6 |
|
7 | 7 | error[E0511]: invalid monomorphization of `simd_insert` intrinsic: expected inserted type `i32` (element of input `i32x4`), found `f64`
|
8 |
| - --> $DIR/generic-elements.rs:46:9 |
| 8 | + --> $DIR/generic-elements.rs:49:9 |
9 | 9 | |
|
10 | 10 | LL | simd_insert(x, 0, 1.0);
|
11 | 11 | | ^^^^^^^^^^^^^^^^^^^^^^
|
12 | 12 |
|
13 | 13 | error[E0511]: invalid monomorphization of `simd_extract` intrinsic: expected return type `i32` (element of input `i32x4`), found `f32`
|
14 |
| - --> $DIR/generic-elements.rs:48:9 |
| 14 | + --> $DIR/generic-elements.rs:51:9 |
15 | 15 | |
|
16 | 16 | LL | simd_extract::<_, f32>(x, 0);
|
17 | 17 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
18 | 18 |
|
19 | 19 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
20 |
| - --> $DIR/generic-elements.rs:52:9 |
| 20 | + --> $DIR/generic-elements.rs:55:9 |
21 | 21 | |
|
22 | 22 | LL | simd_shuffle::<i32, _, i32>(0, 0, IDX2);
|
23 | 23 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
24 | 24 |
|
25 | 25 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
26 |
| - --> $DIR/generic-elements.rs:55:9 |
| 26 | + --> $DIR/generic-elements.rs:58:9 |
27 | 27 | |
|
28 | 28 | LL | simd_shuffle::<i32, _, i32>(0, 0, IDX4);
|
29 | 29 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
30 | 30 |
|
31 | 31 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
32 |
| - --> $DIR/generic-elements.rs:58:9 |
| 32 | + --> $DIR/generic-elements.rs:61:9 |
33 | 33 | |
|
34 | 34 | LL | simd_shuffle::<i32, _, i32>(0, 0, IDX8);
|
35 | 35 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
36 | 36 |
|
37 | 37 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x2` with element type `f32`
|
38 |
| - --> $DIR/generic-elements.rs:61:9 |
| 38 | + --> $DIR/generic-elements.rs:64:9 |
39 | 39 | |
|
40 | 40 | LL | simd_shuffle::<_, _, f32x2>(x, x, IDX2);
|
41 | 41 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
42 | 42 |
|
43 | 43 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x4` with element type `f32`
|
44 |
| - --> $DIR/generic-elements.rs:63:9 |
| 44 | + --> $DIR/generic-elements.rs:66:9 |
45 | 45 | |
|
46 | 46 | LL | simd_shuffle::<_, _, f32x4>(x, x, IDX4);
|
47 | 47 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
48 | 48 |
|
49 | 49 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x8` with element type `f32`
|
50 |
| - --> $DIR/generic-elements.rs:65:9 |
| 50 | + --> $DIR/generic-elements.rs:68:9 |
51 | 51 | |
|
52 | 52 | LL | simd_shuffle::<_, _, f32x8>(x, x, IDX8);
|
53 | 53 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
54 | 54 |
|
55 | 55 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return type of length 2, found `i32x8` with length 8
|
56 |
| - --> $DIR/generic-elements.rs:68:9 |
| 56 | + --> $DIR/generic-elements.rs:71:9 |
57 | 57 | |
|
58 | 58 | LL | simd_shuffle::<_, _, i32x8>(x, x, IDX2);
|
59 | 59 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
60 | 60 |
|
61 | 61 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return type of length 4, found `i32x8` with length 8
|
62 |
| - --> $DIR/generic-elements.rs:70:9 |
| 62 | + --> $DIR/generic-elements.rs:73:9 |
63 | 63 | |
|
64 | 64 | LL | simd_shuffle::<_, _, i32x8>(x, x, IDX4);
|
65 | 65 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
66 | 66 |
|
67 | 67 | error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: expected return type of length 8, found `i32x2` with length 2
|
68 |
| - --> $DIR/generic-elements.rs:72:9 |
| 68 | + --> $DIR/generic-elements.rs:75:9 |
69 | 69 | |
|
70 | 70 | LL | simd_shuffle::<_, _, i32x2>(x, x, IDX8);
|
71 | 71 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
72 | 72 |
|
73 | 73 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
74 |
| - --> $DIR/generic-elements.rs:76:9 |
| 74 | + --> $DIR/generic-elements.rs:79:9 |
75 | 75 | |
|
76 | 76 | LL | simd_shuffle_generic::<i32, i32, I2>(0, 0);
|
77 | 77 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
78 | 78 |
|
79 | 79 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
80 |
| - --> $DIR/generic-elements.rs:79:9 |
| 80 | + --> $DIR/generic-elements.rs:82:9 |
81 | 81 | |
|
82 | 82 | LL | simd_shuffle_generic::<i32, i32, I4>(0, 0);
|
83 | 83 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
84 | 84 |
|
85 | 85 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
86 |
| - --> $DIR/generic-elements.rs:82:9 |
| 86 | + --> $DIR/generic-elements.rs:85:9 |
87 | 87 | |
|
88 | 88 | LL | simd_shuffle_generic::<i32, i32, I8>(0, 0);
|
89 | 89 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
90 | 90 |
|
91 | 91 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x2` with element type `f32`
|
92 |
| - --> $DIR/generic-elements.rs:85:9 |
| 92 | + --> $DIR/generic-elements.rs:88:9 |
93 | 93 | |
|
94 | 94 | LL | simd_shuffle_generic::<_, f32x2, I2>(x, x);
|
95 | 95 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
96 | 96 |
|
97 | 97 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x4` with element type `f32`
|
98 |
| - --> $DIR/generic-elements.rs:87:9 |
| 98 | + --> $DIR/generic-elements.rs:90:9 |
99 | 99 | |
|
100 | 100 | LL | simd_shuffle_generic::<_, f32x4, I4>(x, x);
|
101 | 101 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
102 | 102 |
|
103 | 103 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x8` with element type `f32`
|
104 |
| - --> $DIR/generic-elements.rs:89:9 |
| 104 | + --> $DIR/generic-elements.rs:92:9 |
105 | 105 | |
|
106 | 106 | LL | simd_shuffle_generic::<_, f32x8, I8>(x, x);
|
107 | 107 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
108 | 108 |
|
109 | 109 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return type of length 2, found `i32x8` with length 8
|
110 |
| - --> $DIR/generic-elements.rs:92:9 |
| 110 | + --> $DIR/generic-elements.rs:95:9 |
111 | 111 | |
|
112 | 112 | LL | simd_shuffle_generic::<_, i32x8, I2>(x, x);
|
113 | 113 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
114 | 114 |
|
115 | 115 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return type of length 4, found `i32x8` with length 8
|
116 |
| - --> $DIR/generic-elements.rs:94:9 |
| 116 | + --> $DIR/generic-elements.rs:97:9 |
117 | 117 | |
|
118 | 118 | LL | simd_shuffle_generic::<_, i32x8, I4>(x, x);
|
119 | 119 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
120 | 120 |
|
121 | 121 | error[E0511]: invalid monomorphization of `simd_shuffle_generic` intrinsic: expected return type of length 8, found `i32x2` with length 2
|
122 |
| - --> $DIR/generic-elements.rs:96:9 |
| 122 | + --> $DIR/generic-elements.rs:99:9 |
123 | 123 | |
|
124 | 124 | LL | simd_shuffle_generic::<_, i32x2, I8>(x, x);
|
125 | 125 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
0 commit comments