|
1 |
| -error[E0511]: invalid monomorphization of `simd_reduce_add_ordered` intrinsic: accumulator of simd_reduce_add_ordered is not 0.0 |
2 |
| - --> $DIR/simd-intrinsic-generic-reduction.rs:36:9 |
| 1 | +error[E0511]: invalid monomorphization of `simd_reduce_add_ordered` intrinsic: expected return type `f32` (element of input `f32x4`), found `i32` |
| 2 | + --> $DIR/simd-intrinsic-generic-reduction.rs:33:9 |
3 | 3 | |
|
4 |
| -LL | simd_reduce_add_ordered(z, 2_f32); |
5 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 4 | +LL | simd_reduce_add_ordered(z, 0); |
| 5 | + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
6 | 6 |
|
7 |
| -error[E0511]: invalid monomorphization of `simd_reduce_mul_ordered` intrinsic: accumulator of simd_reduce_mul_ordered is not 1.0 |
8 |
| - --> $DIR/simd-intrinsic-generic-reduction.rs:38:9 |
| 7 | +error[E0511]: invalid monomorphization of `simd_reduce_mul_ordered` intrinsic: expected return type `f32` (element of input `f32x4`), found `i32` |
| 8 | + --> $DIR/simd-intrinsic-generic-reduction.rs:35:9 |
9 | 9 | |
|
10 |
| -LL | simd_reduce_mul_ordered(z, 3_f32); |
11 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 10 | +LL | simd_reduce_mul_ordered(z, 1); |
| 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/simd-intrinsic-generic-reduction.rs:41:22 |
| 14 | + --> $DIR/simd-intrinsic-generic-reduction.rs:38: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/simd-intrinsic-generic-reduction.rs:43:22 |
| 20 | + --> $DIR/simd-intrinsic-generic-reduction.rs:40: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/simd-intrinsic-generic-reduction.rs:45:22 |
| 26 | + --> $DIR/simd-intrinsic-generic-reduction.rs:42: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/simd-intrinsic-generic-reduction.rs:48:22 |
| 32 | + --> $DIR/simd-intrinsic-generic-reduction.rs:45: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/simd-intrinsic-generic-reduction.rs:50:22 |
| 38 | + --> $DIR/simd-intrinsic-generic-reduction.rs:47: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/simd-intrinsic-generic-reduction.rs:52:22 |
| 44 | + --> $DIR/simd-intrinsic-generic-reduction.rs:49: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/simd-intrinsic-generic-reduction.rs:55:23 |
| 50 | + --> $DIR/simd-intrinsic-generic-reduction.rs:52: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/simd-intrinsic-generic-reduction.rs:57:23 |
| 56 | + --> $DIR/simd-intrinsic-generic-reduction.rs:54:23 |
57 | 57 | |
|
58 | 58 | LL | let _: bool = simd_reduce_any(z);
|
59 | 59 | | ^^^^^^^^^^^^^^^^^^
|
60 | 60 |
|
61 |
| -error[E0511]: invalid monomorphization of `simd_reduce_add_ordered` intrinsic: accumulator of simd_reduce_add_ordered is not a constant |
62 |
| - --> $DIR/simd-intrinsic-generic-reduction.rs:67:5 |
63 |
| - | |
64 |
| -LL | simd_reduce_add_ordered(z, x); |
65 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
66 |
| - |
67 |
| -error[E0511]: invalid monomorphization of `simd_reduce_mul_ordered` intrinsic: accumulator of simd_reduce_mul_ordered is not a constant |
68 |
| - --> $DIR/simd-intrinsic-generic-reduction.rs:69:5 |
69 |
| - | |
70 |
| -LL | simd_reduce_mul_ordered(z, x); |
71 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
72 |
| - |
73 |
| -error: aborting due to 12 previous errors |
| 61 | +error: aborting due to 10 previous errors |
74 | 62 |
|
0 commit comments