|
| 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 |
| 3 | + | |
| 4 | +LL | let _xc = x.ceil(); |
| 5 | + | ^^^^ method not found in `Simd<f32, 4_usize>` |
| 6 | + |
| 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 |
| 9 | + | |
| 10 | +LL | let _xf = x.floor(); |
| 11 | + | ^^^^^ method not found in `Simd<f32, 4_usize>` |
| 12 | + |
| 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 |
| 15 | + | |
| 16 | +LL | let _xr = x.round(); |
| 17 | + | ^^^^^ method not found in `Simd<f32, 4_usize>` |
| 18 | + |
| 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 |
| 21 | + | |
| 22 | +LL | let _xt = x.trunc(); |
| 23 | + | ^^^^^ method not found in `Simd<f32, 4_usize>` |
| 24 | + |
| 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 |
| 27 | + | |
| 28 | +LL | let _xfma = x.mul_add(x, x); |
| 29 | + | ^^^^^^^ method not found in `Simd<f32, 4_usize>` |
| 30 | + |
| 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 |
| 33 | + | |
| 34 | +LL | let _xsqrt = x.sqrt(); |
| 35 | + | ^^^^ method not found in `Simd<f32, 4_usize>` |
| 36 | + |
| 37 | +error: aborting due to 6 previous errors |
| 38 | + |
| 39 | +For more information about this error, try `rustc --explain E0599`. |
0 commit comments