File: not-out-of-bounds.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (87 lines) | stat: -rw-r--r-- 3,923 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 4)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(2, u8x2, simd_shuffle);
   |     ------------------------------------------ in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 8)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(4, u8x4, simd_shuffle);
   |     ------------------------------------------ in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 16)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(8, u8x8, simd_shuffle);
   |     ------------------------------------------ in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 32)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(16, u8x16, simd_shuffle);
   |     -------------------------------------------- in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 64)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(32, u8x32, simd_shuffle);
   |     -------------------------------------------- in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 128)
  --> $DIR/not-out-of-bounds.rs:52:21
   |
LL |                     $y(vec1, vec2, IDX)
   |                     ^^^^^^^^^^^^^^^^^^^
...
LL |     test_shuffle_lanes!(64, u8x64, simd_shuffle);
   |     -------------------------------------------- in this macro invocation
   |
   = note: this error originates in the macro `test_shuffle_lanes` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0511]: invalid monomorphization of `simd_shuffle` intrinsic: SIMD index #0 is out of bounds (limit 4)
  --> $DIR/not-out-of-bounds.rs:77:23
   |
LL |         let _: u8x2 = simd_shuffle(v, v, I);
   |                       ^^^^^^^^^^^^^^^^^^^^^

error[E0511]: invalid monomorphization of `simd_insert` intrinsic: SIMD index #1 is out of bounds (limit 2)
  --> $DIR/not-out-of-bounds.rs:83:9
   |
LL |         simd_insert(v, 2, 0u8);
   |         ^^^^^^^^^^^^^^^^^^^^^^

error[E0511]: invalid monomorphization of `simd_extract` intrinsic: SIMD index #1 is out of bounds (limit 2)
  --> $DIR/not-out-of-bounds.rs:84:24
   |
LL |         let _val: u8 = simd_extract(v, 2);
   |                        ^^^^^^^^^^^^^^^^^^

error: aborting due to 9 previous errors

For more information about this error, try `rustc --explain E0511`.