Skip to content

Commit 2a7b511

Browse files
Re-bless src/test/ui/simd
1 parent 22dc829 commit 2a7b511

11 files changed

+84
-84
lines changed

src/test/ui/simd/array-trait.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: unconstrained generic constant
2-
--> $DIR/simd-array-trait.rs:23:23
2+
--> $DIR/array-trait.rs:23:23
33
|
44
LL | pub struct T<S: Simd>([S::Lane; S::SIZE]);
55
| ^^^^^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-arithmetic-2.stderr

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,89 +1,89 @@
11
error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `i32`
2-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:69:9
2+
--> $DIR/generic-arithmetic-2.rs:69:9
33
|
44
LL | simd_add(0, 0);
55
| ^^^^^^^^^^^^^^
66

77
error[E0511]: invalid monomorphization of `simd_sub` intrinsic: expected SIMD input type, found non-SIMD `i32`
8-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:71:9
8+
--> $DIR/generic-arithmetic-2.rs:71:9
99
|
1010
LL | simd_sub(0, 0);
1111
| ^^^^^^^^^^^^^^
1212

1313
error[E0511]: invalid monomorphization of `simd_mul` intrinsic: expected SIMD input type, found non-SIMD `i32`
14-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:73:9
14+
--> $DIR/generic-arithmetic-2.rs:73:9
1515
|
1616
LL | simd_mul(0, 0);
1717
| ^^^^^^^^^^^^^^
1818

1919
error[E0511]: invalid monomorphization of `simd_div` intrinsic: expected SIMD input type, found non-SIMD `i32`
20-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:75:9
20+
--> $DIR/generic-arithmetic-2.rs:75:9
2121
|
2222
LL | simd_div(0, 0);
2323
| ^^^^^^^^^^^^^^
2424

2525
error[E0511]: invalid monomorphization of `simd_shl` intrinsic: expected SIMD input type, found non-SIMD `i32`
26-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:77:9
26+
--> $DIR/generic-arithmetic-2.rs:77:9
2727
|
2828
LL | simd_shl(0, 0);
2929
| ^^^^^^^^^^^^^^
3030

3131
error[E0511]: invalid monomorphization of `simd_shr` intrinsic: expected SIMD input type, found non-SIMD `i32`
32-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:79:9
32+
--> $DIR/generic-arithmetic-2.rs:79:9
3333
|
3434
LL | simd_shr(0, 0);
3535
| ^^^^^^^^^^^^^^
3636

3737
error[E0511]: invalid monomorphization of `simd_and` intrinsic: expected SIMD input type, found non-SIMD `i32`
38-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:81:9
38+
--> $DIR/generic-arithmetic-2.rs:81:9
3939
|
4040
LL | simd_and(0, 0);
4141
| ^^^^^^^^^^^^^^
4242

4343
error[E0511]: invalid monomorphization of `simd_or` intrinsic: expected SIMD input type, found non-SIMD `i32`
44-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:83:9
44+
--> $DIR/generic-arithmetic-2.rs:83:9
4545
|
4646
LL | simd_or(0, 0);
4747
| ^^^^^^^^^^^^^
4848

4949
error[E0511]: invalid monomorphization of `simd_xor` intrinsic: expected SIMD input type, found non-SIMD `i32`
50-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:85:9
50+
--> $DIR/generic-arithmetic-2.rs:85:9
5151
|
5252
LL | simd_xor(0, 0);
5353
| ^^^^^^^^^^^^^^
5454

5555
error[E0511]: invalid monomorphization of `simd_neg` intrinsic: expected SIMD input type, found non-SIMD `i32`
56-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:88:9
56+
--> $DIR/generic-arithmetic-2.rs:88:9
5757
|
5858
LL | simd_neg(0);
5959
| ^^^^^^^^^^^
6060

6161
error[E0511]: invalid monomorphization of `simd_shl` intrinsic: unsupported operation on `f32x4` with element `f32`
62-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:92:9
62+
--> $DIR/generic-arithmetic-2.rs:92:9
6363
|
6464
LL | simd_shl(z, z);
6565
| ^^^^^^^^^^^^^^
6666

6767
error[E0511]: invalid monomorphization of `simd_shr` intrinsic: unsupported operation on `f32x4` with element `f32`
68-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:94:9
68+
--> $DIR/generic-arithmetic-2.rs:94:9
6969
|
7070
LL | simd_shr(z, z);
7171
| ^^^^^^^^^^^^^^
7272

7373
error[E0511]: invalid monomorphization of `simd_and` intrinsic: unsupported operation on `f32x4` with element `f32`
74-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:96:9
74+
--> $DIR/generic-arithmetic-2.rs:96:9
7575
|
7676
LL | simd_and(z, z);
7777
| ^^^^^^^^^^^^^^
7878

7979
error[E0511]: invalid monomorphization of `simd_or` intrinsic: unsupported operation on `f32x4` with element `f32`
80-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:98:9
80+
--> $DIR/generic-arithmetic-2.rs:98:9
8181
|
8282
LL | simd_or(z, z);
8383
| ^^^^^^^^^^^^^
8484

8585
error[E0511]: invalid monomorphization of `simd_xor` intrinsic: unsupported operation on `f32x4` with element `f32`
86-
--> $DIR/simd-intrinsic-generic-arithmetic.rs:100:9
86+
--> $DIR/generic-arithmetic-2.rs:100:9
8787
|
8888
LL | simd_xor(z, z);
8989
| ^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-arithmetic-saturating-2.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
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
2+
--> $DIR/generic-arithmetic-saturating-2.rs:33:9
33
|
44
LL | simd_saturating_add(z, z);
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
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
8+
--> $DIR/generic-arithmetic-saturating-2.rs:35:9
99
|
1010
LL | simd_saturating_sub(z, z);
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-bitmask.stderr

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
error[E0511]: invalid monomorphization of `simd_bitmask` intrinsic: bitmask `u16`, expected `u8`
2-
--> $DIR/simd-intrinsic-generic-bitmask.rs:53:22
2+
--> $DIR/generic-bitmask.rs:53:22
33
|
44
LL | let _: u16 = simd_bitmask(m2);
55
| ^^^^^^^^^^^^^^^^
66

77
error[E0511]: invalid monomorphization of `simd_bitmask` intrinsic: bitmask `u16`, expected `u8`
8-
--> $DIR/simd-intrinsic-generic-bitmask.rs:56:22
8+
--> $DIR/generic-bitmask.rs:56:22
99
|
1010
LL | let _: u16 = simd_bitmask(m8);
1111
| ^^^^^^^^^^^^^^^^
1212

1313
error[E0511]: invalid monomorphization of `simd_bitmask` intrinsic: bitmask `u32`, expected `u16`
14-
--> $DIR/simd-intrinsic-generic-bitmask.rs:59:22
14+
--> $DIR/generic-bitmask.rs:59:22
1515
|
1616
LL | let _: u32 = simd_bitmask(m16);
1717
| ^^^^^^^^^^^^^^^^^
1818

1919
error[E0511]: invalid monomorphization of `simd_bitmask` intrinsic: bitmask `u64`, expected `u32`
20-
--> $DIR/simd-intrinsic-generic-bitmask.rs:62:22
20+
--> $DIR/generic-bitmask.rs:62:22
2121
|
2222
LL | let _: u64 = simd_bitmask(m32);
2323
| ^^^^^^^^^^^^^^^^^
2424

2525
error[E0511]: invalid monomorphization of `simd_bitmask` intrinsic: bitmask `u128`, expected `u64`
26-
--> $DIR/simd-intrinsic-generic-bitmask.rs:65:23
26+
--> $DIR/generic-bitmask.rs:65:23
2727
|
2828
LL | let _: u128 = simd_bitmask(m64);
2929
| ^^^^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-cast.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
error[E0511]: invalid monomorphization of `simd_cast` intrinsic: expected SIMD input type, found non-SIMD `i32`
2-
--> $DIR/simd-intrinsic-generic-cast.rs:34:9
2+
--> $DIR/generic-cast.rs:34:9
33
|
44
LL | simd_cast::<i32, i32>(0);
55
| ^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error[E0511]: invalid monomorphization of `simd_cast` intrinsic: expected SIMD input type, found non-SIMD `i32`
8-
--> $DIR/simd-intrinsic-generic-cast.rs:36:9
8+
--> $DIR/generic-cast.rs:36:9
99
|
1010
LL | simd_cast::<i32, i32x4>(0);
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error[E0511]: invalid monomorphization of `simd_cast` intrinsic: expected SIMD return type, found non-SIMD `i32`
14-
--> $DIR/simd-intrinsic-generic-cast.rs:38:9
14+
--> $DIR/generic-cast.rs:38:9
1515
|
1616
LL | simd_cast::<i32x4, i32>(x);
1717
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
1818

1919
error[E0511]: invalid monomorphization of `simd_cast` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i32x8` with length 8
20-
--> $DIR/simd-intrinsic-generic-cast.rs:40:9
20+
--> $DIR/generic-cast.rs:40:9
2121
|
2222
LL | simd_cast::<_, i32x8>(x);
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-comparison.stderr

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,107 +1,107 @@
11
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD input type, found non-SIMD `i32`
2-
--> $DIR/simd-intrinsic-generic-comparison.rs:28:9
2+
--> $DIR/generic-comparison.rs:28:9
33
|
44
LL | simd_eq::<i32, i32>(0, 0);
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^
66

77
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD input type, found non-SIMD `i32`
8-
--> $DIR/simd-intrinsic-generic-comparison.rs:30:9
8+
--> $DIR/generic-comparison.rs:30:9
99
|
1010
LL | simd_ne::<i32, i32>(0, 0);
1111
| ^^^^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD input type, found non-SIMD `i32`
14-
--> $DIR/simd-intrinsic-generic-comparison.rs:32:9
14+
--> $DIR/generic-comparison.rs:32:9
1515
|
1616
LL | simd_lt::<i32, i32>(0, 0);
1717
| ^^^^^^^^^^^^^^^^^^^^^^^^^
1818

1919
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD input type, found non-SIMD `i32`
20-
--> $DIR/simd-intrinsic-generic-comparison.rs:34:9
20+
--> $DIR/generic-comparison.rs:34:9
2121
|
2222
LL | simd_le::<i32, i32>(0, 0);
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2424

2525
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD input type, found non-SIMD `i32`
26-
--> $DIR/simd-intrinsic-generic-comparison.rs:36:9
26+
--> $DIR/generic-comparison.rs:36:9
2727
|
2828
LL | simd_gt::<i32, i32>(0, 0);
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^
3030

3131
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD input type, found non-SIMD `i32`
32-
--> $DIR/simd-intrinsic-generic-comparison.rs:38:9
32+
--> $DIR/generic-comparison.rs:38:9
3333
|
3434
LL | simd_ge::<i32, i32>(0, 0);
3535
| ^^^^^^^^^^^^^^^^^^^^^^^^^
3636

3737
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD return type, found non-SIMD `i32`
38-
--> $DIR/simd-intrinsic-generic-comparison.rs:41:9
38+
--> $DIR/generic-comparison.rs:41:9
3939
|
4040
LL | simd_eq::<_, i32>(x, x);
4141
| ^^^^^^^^^^^^^^^^^^^^^^^
4242

4343
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD return type, found non-SIMD `i32`
44-
--> $DIR/simd-intrinsic-generic-comparison.rs:43:9
44+
--> $DIR/generic-comparison.rs:43:9
4545
|
4646
LL | simd_ne::<_, i32>(x, x);
4747
| ^^^^^^^^^^^^^^^^^^^^^^^
4848

4949
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD return type, found non-SIMD `i32`
50-
--> $DIR/simd-intrinsic-generic-comparison.rs:45:9
50+
--> $DIR/generic-comparison.rs:45:9
5151
|
5252
LL | simd_lt::<_, i32>(x, x);
5353
| ^^^^^^^^^^^^^^^^^^^^^^^
5454

5555
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD return type, found non-SIMD `i32`
56-
--> $DIR/simd-intrinsic-generic-comparison.rs:47:9
56+
--> $DIR/generic-comparison.rs:47:9
5757
|
5858
LL | simd_le::<_, i32>(x, x);
5959
| ^^^^^^^^^^^^^^^^^^^^^^^
6060

6161
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD return type, found non-SIMD `i32`
62-
--> $DIR/simd-intrinsic-generic-comparison.rs:49:9
62+
--> $DIR/generic-comparison.rs:49:9
6363
|
6464
LL | simd_gt::<_, i32>(x, x);
6565
| ^^^^^^^^^^^^^^^^^^^^^^^
6666

6767
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD return type, found non-SIMD `i32`
68-
--> $DIR/simd-intrinsic-generic-comparison.rs:51:9
68+
--> $DIR/generic-comparison.rs:51:9
6969
|
7070
LL | simd_ge::<_, i32>(x, x);
7171
| ^^^^^^^^^^^^^^^^^^^^^^^
7272

7373
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
74-
--> $DIR/simd-intrinsic-generic-comparison.rs:54:9
74+
--> $DIR/generic-comparison.rs:54:9
7575
|
7676
LL | simd_eq::<_, i16x8>(x, x);
7777
| ^^^^^^^^^^^^^^^^^^^^^^^^^
7878

7979
error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
80-
--> $DIR/simd-intrinsic-generic-comparison.rs:56:9
80+
--> $DIR/generic-comparison.rs:56:9
8181
|
8282
LL | simd_ne::<_, i16x8>(x, x);
8383
| ^^^^^^^^^^^^^^^^^^^^^^^^^
8484

8585
error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
86-
--> $DIR/simd-intrinsic-generic-comparison.rs:58:9
86+
--> $DIR/generic-comparison.rs:58:9
8787
|
8888
LL | simd_lt::<_, i16x8>(x, x);
8989
| ^^^^^^^^^^^^^^^^^^^^^^^^^
9090

9191
error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
92-
--> $DIR/simd-intrinsic-generic-comparison.rs:60:9
92+
--> $DIR/generic-comparison.rs:60:9
9393
|
9494
LL | simd_le::<_, i16x8>(x, x);
9595
| ^^^^^^^^^^^^^^^^^^^^^^^^^
9696

9797
error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
98-
--> $DIR/simd-intrinsic-generic-comparison.rs:62:9
98+
--> $DIR/generic-comparison.rs:62:9
9999
|
100100
LL | simd_gt::<_, i16x8>(x, x);
101101
| ^^^^^^^^^^^^^^^^^^^^^^^^^
102102

103103
error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
104-
--> $DIR/simd-intrinsic-generic-comparison.rs:64:9
104+
--> $DIR/generic-comparison.rs:64:9
105105
|
106106
LL | simd_ge::<_, i16x8>(x, x);
107107
| ^^^^^^^^^^^^^^^^^^^^^^^^^

src/test/ui/simd/intrinsic/generic-elements.stderr

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,71 @@
11
error[E0511]: invalid monomorphization of `simd_insert` intrinsic: expected SIMD input type, found non-SIMD `i32`
2-
--> $DIR/simd-intrinsic-generic-elements.rs:46:9
2+
--> $DIR/generic-elements.rs:46:9
33
|
44
LL | simd_insert(0, 0, 0);
55
| ^^^^^^^^^^^^^^^^^^^^
66

77
error[E0511]: invalid monomorphization of `simd_insert` intrinsic: expected inserted type `i32` (element of input `i32x4`), found `f64`
8-
--> $DIR/simd-intrinsic-generic-elements.rs:48:9
8+
--> $DIR/generic-elements.rs:48:9
99
|
1010
LL | simd_insert(x, 0, 1.0);
1111
| ^^^^^^^^^^^^^^^^^^^^^^
1212

1313
error[E0511]: invalid monomorphization of `simd_extract` intrinsic: expected return type `i32` (element of input `i32x4`), found `f32`
14-
--> $DIR/simd-intrinsic-generic-elements.rs:50:9
14+
--> $DIR/generic-elements.rs:50:9
1515
|
1616
LL | simd_extract::<_, f32>(x, 0);
1717
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1818

1919
error[E0511]: invalid monomorphization of `simd_shuffle2` intrinsic: expected SIMD input type, found non-SIMD `i32`
20-
--> $DIR/simd-intrinsic-generic-elements.rs:54:9
20+
--> $DIR/generic-elements.rs:54:9
2121
|
2222
LL | simd_shuffle2::<i32, i32>(0, 0, IDX2);
2323
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2424

2525
error[E0511]: invalid monomorphization of `simd_shuffle4` intrinsic: expected SIMD input type, found non-SIMD `i32`
26-
--> $DIR/simd-intrinsic-generic-elements.rs:57:9
26+
--> $DIR/generic-elements.rs:57:9
2727
|
2828
LL | simd_shuffle4::<i32, i32>(0, 0, IDX4);
2929
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3030

3131
error[E0511]: invalid monomorphization of `simd_shuffle8` intrinsic: expected SIMD input type, found non-SIMD `i32`
32-
--> $DIR/simd-intrinsic-generic-elements.rs:60:9
32+
--> $DIR/generic-elements.rs:60:9
3333
|
3434
LL | simd_shuffle8::<i32, i32>(0, 0, IDX8);
3535
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3636

3737
error[E0511]: invalid monomorphization of `simd_shuffle2` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x2` with element type `f32`
38-
--> $DIR/simd-intrinsic-generic-elements.rs:63:9
38+
--> $DIR/generic-elements.rs:63:9
3939
|
4040
LL | simd_shuffle2::<_, f32x2>(x, x, IDX2);
4141
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4242

4343
error[E0511]: invalid monomorphization of `simd_shuffle4` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x4` with element type `f32`
44-
--> $DIR/simd-intrinsic-generic-elements.rs:65:9
44+
--> $DIR/generic-elements.rs:65:9
4545
|
4646
LL | simd_shuffle4::<_, f32x4>(x, x, IDX4);
4747
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4848

4949
error[E0511]: invalid monomorphization of `simd_shuffle8` intrinsic: expected return element type `i32` (element of input `i32x4`), found `f32x8` with element type `f32`
50-
--> $DIR/simd-intrinsic-generic-elements.rs:67:9
50+
--> $DIR/generic-elements.rs:67:9
5151
|
5252
LL | simd_shuffle8::<_, f32x8>(x, x, IDX8);
5353
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5454

5555
error[E0511]: invalid monomorphization of `simd_shuffle2` intrinsic: expected return type of length 2, found `i32x8` with length 8
56-
--> $DIR/simd-intrinsic-generic-elements.rs:70:9
56+
--> $DIR/generic-elements.rs:70:9
5757
|
5858
LL | simd_shuffle2::<_, i32x8>(x, x, IDX2);
5959
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6060

6161
error[E0511]: invalid monomorphization of `simd_shuffle4` intrinsic: expected return type of length 4, found `i32x8` with length 8
62-
--> $DIR/simd-intrinsic-generic-elements.rs:72:9
62+
--> $DIR/generic-elements.rs:72:9
6363
|
6464
LL | simd_shuffle4::<_, i32x8>(x, x, IDX4);
6565
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6666

6767
error[E0511]: invalid monomorphization of `simd_shuffle8` intrinsic: expected return type of length 8, found `i32x2` with length 2
68-
--> $DIR/simd-intrinsic-generic-elements.rs:74:9
68+
--> $DIR/generic-elements.rs:74:9
6969
|
7070
LL | simd_shuffle8::<_, i32x2>(x, x, IDX8);
7171
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)