remove a fixme comment

This commit is contained in:
nsz 2012-03-20 20:08:35 +01:00
parent f1347a3a45
commit 8c6fc860a9
3 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#include "libm.h"
// FIXME: macro
// FIXME: macro in math.h
int __signbit(double x)
{
union {

View File

@ -1,6 +1,6 @@
#include "libm.h"
// FIXME
// FIXME: macro in math.h
int __signbitf(float x)
{
union {

View File

@ -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);