summaryrefslogtreecommitdiffstats
path: root/tests/ui/simd/intrinsic/generic-comparison.stderr
blob: 0eae2688bced07e92b263fd46dad6c0d7628bcce (plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
error[E0511]: invalid monomorphization of `simd_eq` intrinsic: expected SIMD input type, found non-SIMD `i32`
  --> $DIR/generic-comparison.rs:28:9
   |
LL |         simd_eq::<i32, i32>(0, 0);
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

error: aborting due to 18 previous errors

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