K 10 svn:author V 3 bde K 8 svn:date V 27 2008-03-30T17:28:27.000000Z K 7 svn:log V 362 Use the expression fabs(x+0.0)-fabs(y+0.0) instead of fabs(x+0.0)+fabs(y+0.0) when mixing NaNs. This improves consistency of the result by making it harder for the compiler to reorder the operands. (FP addition is not necessarily commutative because the order of operands makes a difference on some machines iff the operands are both NaNs.) END