Skip to content

Commit 2837d2f

Browse files
committed
fix styles
1 parent cfcd849 commit 2837d2f

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

libc/src/__support/math/acosf.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include "src/__support/macros/config.h"
1919
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
2020

21-
2221
namespace LIBC_NAMESPACE_DECL {
2322

2423
namespace math {

libc/src/__support/math/inv_trigf_utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ LIBC_INLINE static constexpr double atan_eval(double x, unsigned i) {
137137
// and approximate with Taylor polynomial:
138138
// atan(q) ~ q - q^3/3 + q^5/5 - q^7/7 + q^9/9
139139
LIBC_INLINE static constexpr double atan_eval_no_table(double num, double den,
140-
double k_over_16) {
140+
double k_over_16) {
141141
double num_r = fputil::multiply_add(den, -k_over_16, num);
142142
double den_r = fputil::multiply_add(num, k_over_16, den);
143143
double q = num_r / den_r;

libc/src/math/generic/atan2f.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
#include "src/math/atan2f.h"
1010
#include "hdr/fenv_macros.h"
11-
#include "src/__support/math/inv_trigf_utils.h"
1211
#include "src/__support/FPUtil/FEnvImpl.h"
1312
#include "src/__support/FPUtil/FPBits.h"
1413
#include "src/__support/FPUtil/PolyEval.h"
@@ -18,6 +17,7 @@
1817
#include "src/__support/FPUtil/rounding_mode.h"
1918
#include "src/__support/macros/config.h"
2019
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
20+
#include "src/__support/math/inv_trigf_utils.h"
2121

2222
#if defined(LIBC_MATH_HAS_SKIP_ACCURATE_PASS) && \
2323
defined(LIBC_MATH_HAS_INTERMEDIATE_COMP_IN_FLOAT)

libc/src/math/generic/atanf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "src/math/atanf.h"
10-
#include "src/__support/math/inv_trigf_utils.h"
1110
#include "src/__support/FPUtil/FPBits.h"
1211
#include "src/__support/FPUtil/PolyEval.h"
1312
#include "src/__support/FPUtil/except_value_utils.h"
@@ -16,6 +15,7 @@
1615
#include "src/__support/FPUtil/rounding_mode.h"
1716
#include "src/__support/macros/config.h"
1817
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
18+
#include "src/__support/math/inv_trigf_utils.h"
1919

2020
namespace LIBC_NAMESPACE_DECL {
2121

0 commit comments

Comments
 (0)