summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/floating_point_powi.stderr
blob: 5df0de1fef22e59f22fdf21d73e5c6e2ed7bed69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:10:13
   |
LL |     let _ = x.powi(2) + y;
   |             ^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, y)`
   |
   = note: `-D clippy::suboptimal-flops` implied by `-D warnings`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:11:13
   |
LL |     let _ = x.powi(2) - y;
   |             ^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, -y)`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:12:13
   |
LL |     let _ = x + y.powi(2);
   |             ^^^^^^^^^^^^^ help: consider using: `y.mul_add(y, x)`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:13:13
   |
LL |     let _ = x - y.powi(2);
   |             ^^^^^^^^^^^^^ help: consider using: `y.mul_add(-y, x)`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:14:13
   |
LL |     let _ = x + (y as f32).powi(2);
   |             ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `(y as f32).mul_add(y as f32, x)`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:15:13
   |
LL |     let _ = (x.powi(2) + y).sqrt();
   |             ^^^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, y)`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> $DIR/floating_point_powi.rs:16:13
   |
LL |     let _ = (x + y.powi(2)).sqrt();
   |             ^^^^^^^^^^^^^^^ help: consider using: `y.mul_add(y, x)`

error: aborting due to 7 previous errors