Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 687 → Rev 688

/uspace/trunk/softfloat/generic/comparison.c
44,6 → 44,11
return ((f.parts.exp==0xFF)&&(f.parts.mantisa==0x0));
};
 
inline int isFloat32Zero(float32 f)
{
return (((f.binary) & 0x7FFFFFFF) == 0);
}
 
/**
* @return 1, if both floats are equal - but NaNs are not recognized
*/