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