about summary refs log tree commit diff
path: root/src/math/remquo.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-03-20 19:51:11 -0400
committerRich Felker <dalias@aerifal.cx>2012-03-20 19:51:11 -0400
commit58bf74850f5f7286dc290aa22ad982f50620a1c8 (patch)
treead1d29dbdd40b13381f860f8900f8b0673dfa689 /src/math/remquo.c
parentad47d45e9da8df364cb0a61b6146d51c196c8891 (diff)
parent91c28f61f43ba029166772e8ac25808ea3c3dc98 (diff)
downloadmusl-58bf74850f5f7286dc290aa22ad982f50620a1c8.tar.gz
musl-58bf74850f5f7286dc290aa22ad982f50620a1c8.tar.xz
musl-58bf74850f5f7286dc290aa22ad982f50620a1c8.zip
Merge remote branch 'nsz/master'
Diffstat (limited to 'src/math/remquo.c')
-rw-r--r--src/math/remquo.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/math/remquo.c b/src/math/remquo.c
index 79c9a55e..e92984ed 100644
--- a/src/math/remquo.c
+++ b/src/math/remquo.c
@@ -35,7 +35,6 @@ double remquo(double x, double y, int *quo)
 	hy &= 0x7fffffff;       /* |y| */
 
 	/* purge off exception values */
-	// FIXME: signed shift
 	if ((hy|ly) == 0 || hx >= 0x7ff00000 ||  /* y = 0, or x not finite */
 	    (hy|((ly|-ly)>>31)) > 0x7ff00000)    /* or y is NaN */
 		return (x*y)/(x*y);