]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd/shuffle-not-out-of-bounds.stderr
Auto merge of #101679 - compiler-errors:rpitit-default-body, r=nikomatsakis
[rust.git] / src / test / ui / simd / shuffle-not-out-of-bounds.stderr
1 error[E0511]: invalid monomorphization of `simd_shuffle2` intrinsic: shuffle index #0 is out of bounds (limit 4)
2   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
3    |
4 LL |                     $y(vec1, vec2, ARR)
5    |                     ^^^^^^^^^^^^^^^^^^^
6 ...
7 LL |     test_shuffle_lanes!(2, u8x2, simd_shuffle2);
8    |     ------------------------------------------- in this macro invocation
9    |
10    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error[E0511]: invalid monomorphization of `simd_shuffle4` intrinsic: shuffle index #0 is out of bounds (limit 8)
13   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
14    |
15 LL |                     $y(vec1, vec2, ARR)
16    |                     ^^^^^^^^^^^^^^^^^^^
17 ...
18 LL |     test_shuffle_lanes!(4, u8x4, simd_shuffle4);
19    |     ------------------------------------------- in this macro invocation
20    |
21    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
22
23 error[E0511]: invalid monomorphization of `simd_shuffle8` intrinsic: shuffle index #0 is out of bounds (limit 16)
24   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
25    |
26 LL |                     $y(vec1, vec2, ARR)
27    |                     ^^^^^^^^^^^^^^^^^^^
28 ...
29 LL |     test_shuffle_lanes!(8, u8x8, simd_shuffle8);
30    |     ------------------------------------------- in this macro invocation
31    |
32    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
33
34 error[E0511]: invalid monomorphization of `simd_shuffle16` intrinsic: shuffle index #0 is out of bounds (limit 32)
35   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
36    |
37 LL |                     $y(vec1, vec2, ARR)
38    |                     ^^^^^^^^^^^^^^^^^^^
39 ...
40 LL |     test_shuffle_lanes!(16, u8x16, simd_shuffle16);
41    |     ---------------------------------------------- in this macro invocation
42    |
43    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
44
45 error[E0511]: invalid monomorphization of `simd_shuffle32` intrinsic: shuffle index #0 is out of bounds (limit 64)
46   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
47    |
48 LL |                     $y(vec1, vec2, ARR)
49    |                     ^^^^^^^^^^^^^^^^^^^
50 ...
51 LL |     test_shuffle_lanes!(32, u8x32, simd_shuffle32);
52    |     ---------------------------------------------- in this macro invocation
53    |
54    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
55
56 error[E0511]: invalid monomorphization of `simd_shuffle64` intrinsic: shuffle index #0 is out of bounds (limit 128)
57   --> $DIR/shuffle-not-out-of-bounds.rs:56:21
58    |
59 LL |                     $y(vec1, vec2, ARR)
60    |                     ^^^^^^^^^^^^^^^^^^^
61 ...
62 LL |     test_shuffle_lanes!(64, u8x64, simd_shuffle64);
63    |     ---------------------------------------------- in this macro invocation
64    |
65    = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)
66
67 error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: shuffle index #0 is out of bounds (limit 4)
68   --> $DIR/shuffle-not-out-of-bounds.rs:84:23
69    |
70 LL |         let _: u8x2 = simd_shuffle(v, v, I);
71    |                       ^^^^^^^^^^^^^^^^^^^^^
72
73 error: aborting due to 7 previous errors
74
75 For more information about this error, try `rustc --explain E0511`.