rust-clippy/tests/ui/floating_point_powi.fixed

22 lines
516 B
Rust
Raw Normal View History

2020-04-03 16:58:52 +00:00
// run-rustfix
#![warn(clippy::suboptimal_flops)]
2020-04-03 16:58:52 +00:00
fn main() {
let one = 1;
let x = 3f32;
let y = 4f32;
let _ = x.mul_add(x, y);
let _ = y.mul_add(y, x);
let _ = (y as f32).mul_add(y as f32, x);
let _ = x.mul_add(x, y).sqrt();
let _ = y.mul_add(y, x).sqrt();
2020-04-03 16:58:52 +00:00
// Cases where the lint shouldn't be applied
let _ = x.powi(2);
let _ = x.powi(1 + 1);
2020-04-03 16:58:52 +00:00
let _ = x.powi(3);
let _ = x.powi(4) + y;
2020-04-03 16:58:52 +00:00
let _ = x.powi(one + 1);
let _ = (x.powi(2) + y.powi(2)).sqrt();
2020-04-03 16:58:52 +00:00
}