about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2012-12-12 01:28:22 +0100
committerSzabolcs Nagy <nsz@port70.net>2012-12-12 01:28:22 +0100
commit9c6b1de0fb11d6e2927a19bbaf6345aedcc84297 (patch)
tree661fee32d1a1be31f2d1b1df6c30ec3bfecbbc59 /src
parent1384ad5f33ff0a4bb3e52eb3aa7e6f2536148e04 (diff)
downloadmusl-9c6b1de0fb11d6e2927a19bbaf6345aedcc84297.tar.gz
musl-9c6b1de0fb11d6e2927a19bbaf6345aedcc84297.tar.xz
musl-9c6b1de0fb11d6e2927a19bbaf6345aedcc84297.zip
math: fix comment in __rem_pio2f.c
Diffstat (limited to 'src')
-rw-r--r--src/math/__rem_pio2f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/__rem_pio2f.c b/src/math/__rem_pio2f.c
index 965dc46a..198ee91b 100644
--- a/src/math/__rem_pio2f.c
+++ b/src/math/__rem_pio2f.c
@@ -24,7 +24,7 @@
 
 /*
  * invpio2:  53 bits of 2/pi
- * pio2_1:   first  33 bit of pi/2
+ * pio2_1:   first 25 bits of pi/2
  * pio2_1t:  pi/2 - pio2_1
  */
 static const double
@@ -41,7 +41,7 @@ int __rem_pio2f(float x, double *y)
 
 	GET_FLOAT_WORD(hx, x);
 	ix = hx & 0x7fffffff;
-	/* 33+53 bit pi is good enough for medium size */
+	/* 25+53 bit pi is good enough for medium size */
 	if (ix < 0x4dc90fdb) {  /* |x| ~< 2^28*(pi/2), medium size */
 		/* Use a specialized rint() to get fn.  Assume round-to-nearest. */
 		STRICT_ASSIGN(double, fn, x*invpio2 + 0x1.8p52);