]> git.proxmox.com Git - rustc.git/blame - src/test/ui/simd-intrinsic/simd-intrinsic-generic-comparison.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / simd-intrinsic / simd-intrinsic-generic-comparison.stderr
CommitLineData
b7449926 1error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 2 --> $DIR/simd-intrinsic-generic-comparison.rs:26:9
b7449926
XL
3 |
4LL | simd_eq::<i32, i32>(0, 0);
5 | ^^^^^^^^^^^^^^^^^^^^^^^^^
6
7error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 8 --> $DIR/simd-intrinsic-generic-comparison.rs:28:9
b7449926
XL
9 |
10LL | simd_ne::<i32, i32>(0, 0);
11 | ^^^^^^^^^^^^^^^^^^^^^^^^^
12
13error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 14 --> $DIR/simd-intrinsic-generic-comparison.rs:30:9
b7449926
XL
15 |
16LL | simd_lt::<i32, i32>(0, 0);
17 | ^^^^^^^^^^^^^^^^^^^^^^^^^
18
19error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 20 --> $DIR/simd-intrinsic-generic-comparison.rs:32:9
b7449926
XL
21 |
22LL | simd_le::<i32, i32>(0, 0);
23 | ^^^^^^^^^^^^^^^^^^^^^^^^^
24
25error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 26 --> $DIR/simd-intrinsic-generic-comparison.rs:34:9
b7449926
XL
27 |
28LL | simd_gt::<i32, i32>(0, 0);
29 | ^^^^^^^^^^^^^^^^^^^^^^^^^
30
31error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 32 --> $DIR/simd-intrinsic-generic-comparison.rs:36:9
b7449926
XL
33 |
34LL | simd_ge::<i32, i32>(0, 0);
35 | ^^^^^^^^^^^^^^^^^^^^^^^^^
36
37error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 38 --> $DIR/simd-intrinsic-generic-comparison.rs:39:9
b7449926
XL
39 |
40LL | simd_eq::<_, i32>(x, x);
41 | ^^^^^^^^^^^^^^^^^^^^^^^
42
43error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 44 --> $DIR/simd-intrinsic-generic-comparison.rs:41:9
b7449926
XL
45 |
46LL | simd_ne::<_, i32>(x, x);
47 | ^^^^^^^^^^^^^^^^^^^^^^^
48
49error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 50 --> $DIR/simd-intrinsic-generic-comparison.rs:43:9
b7449926
XL
51 |
52LL | simd_lt::<_, i32>(x, x);
53 | ^^^^^^^^^^^^^^^^^^^^^^^
54
55error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 56 --> $DIR/simd-intrinsic-generic-comparison.rs:45:9
b7449926
XL
57 |
58LL | simd_le::<_, i32>(x, x);
59 | ^^^^^^^^^^^^^^^^^^^^^^^
60
61error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 62 --> $DIR/simd-intrinsic-generic-comparison.rs:47:9
b7449926
XL
63 |
64LL | simd_gt::<_, i32>(x, x);
65 | ^^^^^^^^^^^^^^^^^^^^^^^
66
67error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected SIMD return type, found non-SIMD `i32`
0731742a 68 --> $DIR/simd-intrinsic-generic-comparison.rs:49:9
b7449926
XL
69 |
70LL | simd_ge::<_, i32>(x, x);
71 | ^^^^^^^^^^^^^^^^^^^^^^^
72
73error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 74 --> $DIR/simd-intrinsic-generic-comparison.rs:52:9
b7449926
XL
75 |
76LL | simd_eq::<_, i16x8>(x, x);
77 | ^^^^^^^^^^^^^^^^^^^^^^^^^
78
79error[E0511]: invalid monomorphization of `simd_ne` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 80 --> $DIR/simd-intrinsic-generic-comparison.rs:54:9
b7449926
XL
81 |
82LL | simd_ne::<_, i16x8>(x, x);
83 | ^^^^^^^^^^^^^^^^^^^^^^^^^
84
85error[E0511]: invalid monomorphization of `simd_lt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 86 --> $DIR/simd-intrinsic-generic-comparison.rs:56:9
b7449926
XL
87 |
88LL | simd_lt::<_, i16x8>(x, x);
89 | ^^^^^^^^^^^^^^^^^^^^^^^^^
90
91error[E0511]: invalid monomorphization of `simd_le` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 92 --> $DIR/simd-intrinsic-generic-comparison.rs:58:9
b7449926
XL
93 |
94LL | simd_le::<_, i16x8>(x, x);
95 | ^^^^^^^^^^^^^^^^^^^^^^^^^
96
97error[E0511]: invalid monomorphization of `simd_gt` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 98 --> $DIR/simd-intrinsic-generic-comparison.rs:60:9
b7449926
XL
99 |
100LL | simd_gt::<_, i16x8>(x, x);
101 | ^^^^^^^^^^^^^^^^^^^^^^^^^
102
103error[E0511]: invalid monomorphization of `simd_ge` intrinsic: expected return type with length 4 (same as input type `i32x4`), found `i16x8` with length 8
0731742a 104 --> $DIR/simd-intrinsic-generic-comparison.rs:62:9
b7449926
XL
105 |
106LL | simd_ge::<_, i16x8>(x, x);
107 | ^^^^^^^^^^^^^^^^^^^^^^^^^
108
109error: aborting due to 18 previous errors
110
60c5eb7d 111For more information about this error, try `rustc --explain E0511`.