about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/floating_point_powi.stderr
blob: 211589382911acd538e341c1496cf57ea53564a2 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
error: multiply and add expressions can be calculated more efficiently and accurately
  --> tests/ui/floating_point_powi.rs:9:13
   |
LL |     let _ = x.powi(2) + y;
   |             ^^^^^^^^^^^^^ help: consider using: `x.mul_add(x, y)`
   |
   = note: `-D clippy::suboptimal-flops` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::suboptimal_flops)]`

error: multiply and add expressions can be calculated more efficiently and accurately
  --> tests/ui/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
  --> tests/ui/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
  --> tests/ui/floating_point_powi.rs:15: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
  --> tests/ui/floating_point_powi.rs:17: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
  --> tests/ui/floating_point_powi.rs:19: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
  --> tests/ui/floating_point_powi.rs:21:13
   |
LL |     let _ = (x + y.powi(2)).sqrt();
   |             ^^^^^^^^^^^^^^^ help: consider using: `y.mul_add(y, x)`

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

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

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

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

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

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

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

error: aborting due to 14 previous errors