|
1 | 1 | error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
2 |
| - --> $DIR/generic-arithmetic-2.rs:69:9 |
| 2 | + --> $DIR/generic-arithmetic-2.rs:72:9 |
3 | 3 | |
|
4 | 4 | LL | simd_add(0, 0);
|
5 | 5 | | ^^^^^^^^^^^^^^
|
6 | 6 |
|
7 | 7 | error[E0511]: invalid monomorphization of `simd_sub` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
8 |
| - --> $DIR/generic-arithmetic-2.rs:71:9 |
| 8 | + --> $DIR/generic-arithmetic-2.rs:74:9 |
9 | 9 | |
|
10 | 10 | LL | simd_sub(0, 0);
|
11 | 11 | | ^^^^^^^^^^^^^^
|
12 | 12 |
|
13 | 13 | error[E0511]: invalid monomorphization of `simd_mul` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
14 |
| - --> $DIR/generic-arithmetic-2.rs:73:9 |
| 14 | + --> $DIR/generic-arithmetic-2.rs:76:9 |
15 | 15 | |
|
16 | 16 | LL | simd_mul(0, 0);
|
17 | 17 | | ^^^^^^^^^^^^^^
|
18 | 18 |
|
19 | 19 | error[E0511]: invalid monomorphization of `simd_div` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
20 |
| - --> $DIR/generic-arithmetic-2.rs:75:9 |
| 20 | + --> $DIR/generic-arithmetic-2.rs:78:9 |
21 | 21 | |
|
22 | 22 | LL | simd_div(0, 0);
|
23 | 23 | | ^^^^^^^^^^^^^^
|
24 | 24 |
|
25 | 25 | error[E0511]: invalid monomorphization of `simd_shl` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
26 |
| - --> $DIR/generic-arithmetic-2.rs:77:9 |
| 26 | + --> $DIR/generic-arithmetic-2.rs:80:9 |
27 | 27 | |
|
28 | 28 | LL | simd_shl(0, 0);
|
29 | 29 | | ^^^^^^^^^^^^^^
|
30 | 30 |
|
31 | 31 | error[E0511]: invalid monomorphization of `simd_shr` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
32 |
| - --> $DIR/generic-arithmetic-2.rs:79:9 |
| 32 | + --> $DIR/generic-arithmetic-2.rs:82:9 |
33 | 33 | |
|
34 | 34 | LL | simd_shr(0, 0);
|
35 | 35 | | ^^^^^^^^^^^^^^
|
36 | 36 |
|
37 | 37 | error[E0511]: invalid monomorphization of `simd_and` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
38 |
| - --> $DIR/generic-arithmetic-2.rs:81:9 |
| 38 | + --> $DIR/generic-arithmetic-2.rs:84:9 |
39 | 39 | |
|
40 | 40 | LL | simd_and(0, 0);
|
41 | 41 | | ^^^^^^^^^^^^^^
|
42 | 42 |
|
43 | 43 | error[E0511]: invalid monomorphization of `simd_or` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
44 |
| - --> $DIR/generic-arithmetic-2.rs:83:9 |
| 44 | + --> $DIR/generic-arithmetic-2.rs:86:9 |
45 | 45 | |
|
46 | 46 | LL | simd_or(0, 0);
|
47 | 47 | | ^^^^^^^^^^^^^
|
48 | 48 |
|
49 | 49 | error[E0511]: invalid monomorphization of `simd_xor` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
50 |
| - --> $DIR/generic-arithmetic-2.rs:85:9 |
| 50 | + --> $DIR/generic-arithmetic-2.rs:88:9 |
51 | 51 | |
|
52 | 52 | LL | simd_xor(0, 0);
|
53 | 53 | | ^^^^^^^^^^^^^^
|
54 | 54 |
|
55 | 55 | error[E0511]: invalid monomorphization of `simd_neg` intrinsic: expected SIMD input type, found non-SIMD `i32`
|
56 |
| - --> $DIR/generic-arithmetic-2.rs:88:9 |
| 56 | + --> $DIR/generic-arithmetic-2.rs:91:9 |
57 | 57 | |
|
58 | 58 | LL | simd_neg(0);
|
59 | 59 | | ^^^^^^^^^^^
|
60 | 60 |
|
| 61 | +error[E0511]: invalid monomorphization of `simd_bswap` intrinsic: expected SIMD input type, found non-SIMD `i32` |
| 62 | + --> $DIR/generic-arithmetic-2.rs:93:9 |
| 63 | + | |
| 64 | +LL | simd_bswap(0); |
| 65 | + | ^^^^^^^^^^^^^ |
| 66 | + |
61 | 67 | error[E0511]: invalid monomorphization of `simd_shl` intrinsic: unsupported operation on `f32x4` with element `f32`
|
62 |
| - --> $DIR/generic-arithmetic-2.rs:92:9 |
| 68 | + --> $DIR/generic-arithmetic-2.rs:97:9 |
63 | 69 | |
|
64 | 70 | LL | simd_shl(z, z);
|
65 | 71 | | ^^^^^^^^^^^^^^
|
66 | 72 |
|
67 | 73 | error[E0511]: invalid monomorphization of `simd_shr` intrinsic: unsupported operation on `f32x4` with element `f32`
|
68 |
| - --> $DIR/generic-arithmetic-2.rs:94:9 |
| 74 | + --> $DIR/generic-arithmetic-2.rs:99:9 |
69 | 75 | |
|
70 | 76 | LL | simd_shr(z, z);
|
71 | 77 | | ^^^^^^^^^^^^^^
|
72 | 78 |
|
73 | 79 | error[E0511]: invalid monomorphization of `simd_and` intrinsic: unsupported operation on `f32x4` with element `f32`
|
74 |
| - --> $DIR/generic-arithmetic-2.rs:96:9 |
| 80 | + --> $DIR/generic-arithmetic-2.rs:101:9 |
75 | 81 | |
|
76 | 82 | LL | simd_and(z, z);
|
77 | 83 | | ^^^^^^^^^^^^^^
|
78 | 84 |
|
79 | 85 | error[E0511]: invalid monomorphization of `simd_or` intrinsic: unsupported operation on `f32x4` with element `f32`
|
80 |
| - --> $DIR/generic-arithmetic-2.rs:98:9 |
| 86 | + --> $DIR/generic-arithmetic-2.rs:103:9 |
81 | 87 | |
|
82 | 88 | LL | simd_or(z, z);
|
83 | 89 | | ^^^^^^^^^^^^^
|
84 | 90 |
|
85 | 91 | error[E0511]: invalid monomorphization of `simd_xor` intrinsic: unsupported operation on `f32x4` with element `f32`
|
86 |
| - --> $DIR/generic-arithmetic-2.rs:100:9 |
| 92 | + --> $DIR/generic-arithmetic-2.rs:105:9 |
87 | 93 | |
|
88 | 94 | LL | simd_xor(z, z);
|
89 | 95 | | ^^^^^^^^^^^^^^
|
90 | 96 |
|
91 |
| -error: aborting due to 15 previous errors |
| 97 | +error[E0511]: invalid monomorphization of `simd_bswap` intrinsic: unsupported operation on `f32x4` with element `f32` |
| 98 | + --> $DIR/generic-arithmetic-2.rs:107:9 |
| 99 | + | |
| 100 | +LL | simd_bswap(z); |
| 101 | + | ^^^^^^^^^^^^^ |
| 102 | + |
| 103 | +error: aborting due to 17 previous errors |
92 | 104 |
|
93 | 105 | For more information about this error, try `rustc --explain E0511`.
|
0 commit comments