|
1 | 1 | error[E0511]: invalid monomorphization of `simd_reduce_add_ordered` intrinsic: expected return type `f32` (element of input `f32x4`), found `i32` |
2 | | - --> $DIR/generic-reduction.rs:28:9 |
| 2 | + --> $DIR/generic-reduction.rs:25:9 |
3 | 3 | | |
4 | 4 | LL | simd_reduce_add_ordered(z, 0); |
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
6 | 6 |
|
7 | 7 | error[E0511]: invalid monomorphization of `simd_reduce_mul_ordered` intrinsic: expected return type `f32` (element of input `f32x4`), found `i32` |
8 | | - --> $DIR/generic-reduction.rs:30:9 |
| 8 | + --> $DIR/generic-reduction.rs:27:9 |
9 | 9 | | |
10 | 10 | LL | simd_reduce_mul_ordered(z, 1); |
11 | 11 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
12 | 12 |
|
13 | 13 | error[E0511]: invalid monomorphization of `simd_reduce_and` intrinsic: expected return type `u32` (element of input `u32x4`), found `f32` |
14 | | - --> $DIR/generic-reduction.rs:33:22 |
| 14 | + --> $DIR/generic-reduction.rs:30:22 |
15 | 15 | | |
16 | 16 | LL | let _: f32 = simd_reduce_and(x); |
17 | 17 | | ^^^^^^^^^^^^^^^^^^ |
18 | 18 |
|
19 | 19 | error[E0511]: invalid monomorphization of `simd_reduce_or` intrinsic: expected return type `u32` (element of input `u32x4`), found `f32` |
20 | | - --> $DIR/generic-reduction.rs:35:22 |
| 20 | + --> $DIR/generic-reduction.rs:32:22 |
21 | 21 | | |
22 | 22 | LL | let _: f32 = simd_reduce_or(x); |
23 | 23 | | ^^^^^^^^^^^^^^^^^ |
24 | 24 |
|
25 | 25 | error[E0511]: invalid monomorphization of `simd_reduce_xor` intrinsic: expected return type `u32` (element of input `u32x4`), found `f32` |
26 | | - --> $DIR/generic-reduction.rs:37:22 |
| 26 | + --> $DIR/generic-reduction.rs:34:22 |
27 | 27 | | |
28 | 28 | LL | let _: f32 = simd_reduce_xor(x); |
29 | 29 | | ^^^^^^^^^^^^^^^^^^ |
30 | 30 |
|
31 | 31 | error[E0511]: invalid monomorphization of `simd_reduce_and` intrinsic: unsupported simd_reduce_and from `f32x4` with element `f32` to `f32` |
32 | | - --> $DIR/generic-reduction.rs:40:22 |
| 32 | + --> $DIR/generic-reduction.rs:37:22 |
33 | 33 | | |
34 | 34 | LL | let _: f32 = simd_reduce_and(z); |
35 | 35 | | ^^^^^^^^^^^^^^^^^^ |
36 | 36 |
|
37 | 37 | error[E0511]: invalid monomorphization of `simd_reduce_or` intrinsic: unsupported simd_reduce_or from `f32x4` with element `f32` to `f32` |
38 | | - --> $DIR/generic-reduction.rs:42:22 |
| 38 | + --> $DIR/generic-reduction.rs:39:22 |
39 | 39 | | |
40 | 40 | LL | let _: f32 = simd_reduce_or(z); |
41 | 41 | | ^^^^^^^^^^^^^^^^^ |
42 | 42 |
|
43 | 43 | error[E0511]: invalid monomorphization of `simd_reduce_xor` intrinsic: unsupported simd_reduce_xor from `f32x4` with element `f32` to `f32` |
44 | | - --> $DIR/generic-reduction.rs:44:22 |
| 44 | + --> $DIR/generic-reduction.rs:41:22 |
45 | 45 | | |
46 | 46 | LL | let _: f32 = simd_reduce_xor(z); |
47 | 47 | | ^^^^^^^^^^^^^^^^^^ |
48 | 48 |
|
49 | 49 | error[E0511]: invalid monomorphization of `simd_reduce_all` intrinsic: unsupported simd_reduce_all from `f32x4` with element `f32` to `bool` |
50 | | - --> $DIR/generic-reduction.rs:47:23 |
| 50 | + --> $DIR/generic-reduction.rs:44:23 |
51 | 51 | | |
52 | 52 | LL | let _: bool = simd_reduce_all(z); |
53 | 53 | | ^^^^^^^^^^^^^^^^^^ |
54 | 54 |
|
55 | 55 | error[E0511]: invalid monomorphization of `simd_reduce_any` intrinsic: unsupported simd_reduce_any from `f32x4` with element `f32` to `bool` |
56 | | - --> $DIR/generic-reduction.rs:49:23 |
| 56 | + --> $DIR/generic-reduction.rs:46:23 |
57 | 57 | | |
58 | 58 | LL | let _: bool = simd_reduce_any(z); |
59 | 59 | | ^^^^^^^^^^^^^^^^^^ |
|
0 commit comments