]> git.proxmox.com Git - rustc.git/blame - src/test/ui/simd-intrinsic/simd-intrinsic-generic-arithmetic.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / simd-intrinsic / simd-intrinsic-generic-arithmetic.stderr
CommitLineData
b7449926 1error[E0511]: invalid monomorphization of `simd_add` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 2 --> $DIR/simd-intrinsic-generic-arithmetic.rs:62:9
b7449926
XL
3 |
4LL | simd_add(0, 0);
5 | ^^^^^^^^^^^^^^
6
7error[E0511]: invalid monomorphization of `simd_sub` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 8 --> $DIR/simd-intrinsic-generic-arithmetic.rs:64:9
b7449926
XL
9 |
10LL | simd_sub(0, 0);
11 | ^^^^^^^^^^^^^^
12
13error[E0511]: invalid monomorphization of `simd_mul` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 14 --> $DIR/simd-intrinsic-generic-arithmetic.rs:66:9
b7449926
XL
15 |
16LL | simd_mul(0, 0);
17 | ^^^^^^^^^^^^^^
18
19error[E0511]: invalid monomorphization of `simd_div` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 20 --> $DIR/simd-intrinsic-generic-arithmetic.rs:68:9
b7449926
XL
21 |
22LL | simd_div(0, 0);
23 | ^^^^^^^^^^^^^^
24
25error[E0511]: invalid monomorphization of `simd_shl` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 26 --> $DIR/simd-intrinsic-generic-arithmetic.rs:70:9
b7449926
XL
27 |
28LL | simd_shl(0, 0);
29 | ^^^^^^^^^^^^^^
30
31error[E0511]: invalid monomorphization of `simd_shr` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 32 --> $DIR/simd-intrinsic-generic-arithmetic.rs:72:9
b7449926
XL
33 |
34LL | simd_shr(0, 0);
35 | ^^^^^^^^^^^^^^
36
37error[E0511]: invalid monomorphization of `simd_and` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 38 --> $DIR/simd-intrinsic-generic-arithmetic.rs:74:9
b7449926
XL
39 |
40LL | simd_and(0, 0);
41 | ^^^^^^^^^^^^^^
42
43error[E0511]: invalid monomorphization of `simd_or` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 44 --> $DIR/simd-intrinsic-generic-arithmetic.rs:76:9
b7449926
XL
45 |
46LL | simd_or(0, 0);
47 | ^^^^^^^^^^^^^
48
49error[E0511]: invalid monomorphization of `simd_xor` intrinsic: expected SIMD input type, found non-SIMD `i32`
0731742a 50 --> $DIR/simd-intrinsic-generic-arithmetic.rs:78:9
b7449926
XL
51 |
52LL | simd_xor(0, 0);
53 | ^^^^^^^^^^^^^^
54
55error[E0511]: invalid monomorphization of `simd_shl` intrinsic: unsupported operation on `f32x4` with element `f32`
0731742a 56 --> $DIR/simd-intrinsic-generic-arithmetic.rs:82:9
b7449926
XL
57 |
58LL | simd_shl(z, z);
59 | ^^^^^^^^^^^^^^
60
61error[E0511]: invalid monomorphization of `simd_shr` intrinsic: unsupported operation on `f32x4` with element `f32`
0731742a 62 --> $DIR/simd-intrinsic-generic-arithmetic.rs:84:9
b7449926
XL
63 |
64LL | simd_shr(z, z);
65 | ^^^^^^^^^^^^^^
66
67error[E0511]: invalid monomorphization of `simd_and` intrinsic: unsupported operation on `f32x4` with element `f32`
0731742a 68 --> $DIR/simd-intrinsic-generic-arithmetic.rs:86:9
b7449926
XL
69 |
70LL | simd_and(z, z);
71 | ^^^^^^^^^^^^^^
72
73error[E0511]: invalid monomorphization of `simd_or` intrinsic: unsupported operation on `f32x4` with element `f32`
0731742a 74 --> $DIR/simd-intrinsic-generic-arithmetic.rs:88:9
b7449926
XL
75 |
76LL | simd_or(z, z);
77 | ^^^^^^^^^^^^^
78
79error[E0511]: invalid monomorphization of `simd_xor` intrinsic: unsupported operation on `f32x4` with element `f32`
0731742a 80 --> $DIR/simd-intrinsic-generic-arithmetic.rs:90:9
b7449926
XL
81 |
82LL | simd_xor(z, z);
83 | ^^^^^^^^^^^^^^
84
85error: aborting due to 14 previous errors
86
60c5eb7d 87For more information about this error, try `rustc --explain E0511`.