summaryrefslogtreecommitdiff
path: root/lib/libm/__rem_pio2f.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 19:24:38 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-25 20:35:03 +0100
commita984eb367c032dbe2577f01238c3d1268526be70 (patch)
tree437fef40379b2758b129ccea39df3570fa2d145e /lib/libm/__rem_pio2f.c
parent8834571b202cf4dc9c649cfb096c213b6ecf1566 (diff)
Clang-tidy fixes
Diffstat (limited to 'lib/libm/__rem_pio2f.c')
-rw-r--r--lib/libm/__rem_pio2f.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libm/__rem_pio2f.c b/lib/libm/__rem_pio2f.c
index 6316b60a..04326777 100644
--- a/lib/libm/__rem_pio2f.c
+++ b/lib/libm/__rem_pio2f.c
@@ -37,9 +37,8 @@
* pio2_1: first 25 bits of pi/2
* pio2_1t: pi/2 - pio2_1
*/
-static const double toint = 1.5 / EPS, pio4 = 0x1.921fb6p-1,
- invpio2 = 6.36619772367581382433e-01, /* 0x3FE45F30,
- 0x6DC9C883 */
+static const double toint = 1.5 / EPS, pio4 = 0x1.921fb6p-1, invpio2 = 6.36619772367581382433e-01, /* 0x3FE45F30,
+ 0x6DC9C883 */
pio2_1 = 1.57079631090164184570e+00, /* 0x3FF921FB, 0x50000000 */
pio2_1t = 1.58932547735281966916e-08; /* 0x3E5110b4, 0x611A6263 */