|
1 | 1 | error[E0599]: no method named `ceil` found for struct `Simd` in the current scope
|
2 |
| - --> $DIR/libm_no_std_cant_float.rs:14:17 |
| 2 | + --> $DIR/libm_no_std_cant_float.rs:15:17 |
3 | 3 | |
|
4 | 4 | LL | let _xc = x.ceil();
|
5 | 5 | | ^^^^ method not found in `Simd<f32, 4_usize>`
|
6 | 6 |
|
7 | 7 | error[E0599]: no method named `floor` found for struct `Simd` in the current scope
|
8 |
| - --> $DIR/libm_no_std_cant_float.rs:15:17 |
| 8 | + --> $DIR/libm_no_std_cant_float.rs:16:17 |
9 | 9 | |
|
10 | 10 | LL | let _xf = x.floor();
|
11 | 11 | | ^^^^^ method not found in `Simd<f32, 4_usize>`
|
12 | 12 |
|
13 | 13 | error[E0599]: no method named `round` found for struct `Simd` in the current scope
|
14 |
| - --> $DIR/libm_no_std_cant_float.rs:16:17 |
| 14 | + --> $DIR/libm_no_std_cant_float.rs:17:17 |
15 | 15 | |
|
16 | 16 | LL | let _xr = x.round();
|
17 | 17 | | ^^^^^ method not found in `Simd<f32, 4_usize>`
|
18 | 18 |
|
19 | 19 | error[E0599]: no method named `trunc` found for struct `Simd` in the current scope
|
20 |
| - --> $DIR/libm_no_std_cant_float.rs:17:17 |
| 20 | + --> $DIR/libm_no_std_cant_float.rs:18:17 |
21 | 21 | |
|
22 | 22 | LL | let _xt = x.trunc();
|
23 | 23 | | ^^^^^ method not found in `Simd<f32, 4_usize>`
|
24 | 24 |
|
25 | 25 | error[E0599]: no method named `mul_add` found for struct `Simd` in the current scope
|
26 |
| - --> $DIR/libm_no_std_cant_float.rs:18:19 |
| 26 | + --> $DIR/libm_no_std_cant_float.rs:19:19 |
27 | 27 | |
|
28 | 28 | LL | let _xfma = x.mul_add(x, x);
|
29 | 29 | | ^^^^^^^ method not found in `Simd<f32, 4_usize>`
|
30 | 30 |
|
31 | 31 | error[E0599]: no method named `sqrt` found for struct `Simd` in the current scope
|
32 |
| - --> $DIR/libm_no_std_cant_float.rs:19:20 |
| 32 | + --> $DIR/libm_no_std_cant_float.rs:20:20 |
33 | 33 | |
|
34 | 34 | LL | let _xsqrt = x.sqrt();
|
35 | 35 | | ^^^^ method not found in `Simd<f32, 4_usize>`
|
|
0 commit comments