2021-05-20 10:30:31 +00:00
|
|
|
error: multiply and add expressions can be calculated more efficiently and accurately
|
|
|
|
--> $DIR/floating_point_powi.rs:9:13
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _ = x.powi(2) + y;
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, y)`
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::suboptimal-flops` implied by `-D warnings`
|
2020-07-14 12:59:59 +00:00
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: multiply and add expressions can be calculated more efficiently and accurately
|
|
|
|
--> $DIR/floating_point_powi.rs:10:13
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _ = x + y.powi(2);
|
|
|
|
| ^^^^^^^^^^^^^ help: consider using: `y.mul_add(y, x)`
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: multiply and add expressions can be calculated more efficiently and accurately
|
|
|
|
--> $DIR/floating_point_powi.rs:11:13
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _ = (x.powi(2) + y).sqrt();
|
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, y)`
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: multiply and add expressions can be calculated more efficiently and accurately
|
|
|
|
--> $DIR/floating_point_powi.rs:12:13
|
2020-07-14 12:59:59 +00:00
|
|
|
|
|
|
|
|
LL | let _ = (x + y.powi(2)).sqrt();
|
|
|
|
| ^^^^^^^^^^^^^^^ help: consider using: `y.mul_add(y, x)`
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2020-07-14 12:59:59 +00:00
|
|
|
|