Skip to content

Commit e3db3b9

Browse files
committed
fix style
1 parent 7f60071 commit e3db3b9

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

libc/src/math/generic/acoshf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
#include "src/__support/FPUtil/sqrt.h"
1515
#include "src/__support/macros/config.h"
1616
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
17-
#include "src/math/generic/common_constants.h"
1817
#include "src/__support/math/explogxf.h"
18+
#include "src/math/generic/common_constants.h"
1919

2020
namespace LIBC_NAMESPACE_DECL {
2121

libc/src/math/generic/acoshf16.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/acoshf16.h"
10-
#include "src/__support/math/explogxf.h"
1110
#include "hdr/errno_macros.h"
1211
#include "hdr/fenv_macros.h"
1312
#include "src/__support/FPUtil/FEnvImpl.h"
@@ -20,6 +19,7 @@
2019
#include "src/__support/common.h"
2120
#include "src/__support/macros/config.h"
2221
#include "src/__support/macros/optimization.h"
22+
#include "src/__support/math/explogxf.h"
2323

2424
namespace LIBC_NAMESPACE_DECL {
2525

libc/src/math/generic/asinhf.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
#include "src/__support/FPUtil/sqrt.h"
1414
#include "src/__support/macros/config.h"
1515
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
16-
#include "src/math/generic/common_constants.h"
1716
#include "src/__support/math/explogxf.h"
17+
#include "src/math/generic/common_constants.h"
1818

1919
namespace LIBC_NAMESPACE_DECL {
2020

libc/src/math/generic/asinhf16.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/asinhf16.h"
10-
#include "src/__support/math/explogxf.h"
1110
#include "hdr/fenv_macros.h"
1211
#include "src/__support/FPUtil/FEnvImpl.h"
1312
#include "src/__support/FPUtil/FPBits.h"
@@ -20,6 +19,7 @@
2019
#include "src/__support/common.h"
2120
#include "src/__support/macros/config.h"
2221
#include "src/__support/macros/optimization.h"
22+
#include "src/__support/math/explogxf.h"
2323

2424
namespace LIBC_NAMESPACE_DECL {
2525

libc/src/math/generic/atanhf16.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/atanhf16.h"
10-
#include "src/__support/math/explogxf.h"
1110
#include "hdr/errno_macros.h"
1211
#include "hdr/fenv_macros.h"
1312
#include "src/__support/FPUtil/FEnvImpl.h"
@@ -19,6 +18,7 @@
1918
#include "src/__support/common.h"
2019
#include "src/__support/macros/config.h"
2120
#include "src/__support/macros/optimization.h"
21+
#include "src/__support/math/explogxf.h"
2222

2323
namespace LIBC_NAMESPACE_DECL {
2424

libc/src/math/generic/exp2.cpp

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

99
#include "src/math/exp2.h"
1010
#include "common_constants.h" // Lookup tables EXP2_MID1 and EXP_M2.
11-
#include "src/__support/math/explogxf.h" // ziv_test_denorm.
1211
#include "src/__support/CPP/bit.h"
1312
#include "src/__support/CPP/optional.h"
1413
#include "src/__support/FPUtil/FEnvImpl.h"
@@ -24,6 +23,7 @@
2423
#include "src/__support/integer_literals.h"
2524
#include "src/__support/macros/config.h"
2625
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
26+
#include "src/__support/math/explogxf.h" // ziv_test_denorm.
2727

2828
namespace LIBC_NAMESPACE_DECL {
2929

libc/src/math/generic/expm1.cpp

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

99
#include "src/math/expm1.h"
1010
#include "common_constants.h" // Lookup tables EXP_M1 and EXP_M2.
11-
#include "src/__support/math/explogxf.h" // ziv_test_denorm.
1211
#include "src/__support/CPP/bit.h"
1312
#include "src/__support/CPP/optional.h"
1413
#include "src/__support/FPUtil/FEnvImpl.h"
@@ -25,6 +24,7 @@
2524
#include "src/__support/integer_literals.h"
2625
#include "src/__support/macros/config.h"
2726
#include "src/__support/macros/optimization.h" // LIBC_UNLIKELY
27+
#include "src/__support/math/explogxf.h" // ziv_test_denorm.
2828

2929
#if ((LIBC_MATH & LIBC_MATH_SKIP_ACCURATE_PASS) != 0)
3030
#define LIBC_MATH_EXPM1_SKIP_ACCURATE_PASS

0 commit comments

Comments
 (0)