Commit 64c0b414 by Andreas Schwab Committed by Jeff Law

m68k.c (standard_68881_constant_p): Don't accept -0.0 as valid 68881 constant.

        * m68k.c (standard_68881_constant_p): Don't accept -0.0 as valid
        68881 constant.

From-SVN: r26964
parent 2e5b4448
......@@ -5,6 +5,9 @@ Mon May 17 01:57:37 1999 David Daney <daney@ibw.com.ni>
1999-05-17 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* m68k.c (standard_68881_constant_p): Don't accept -0.0 as valid
68881 constant.
* fold-const.c (fold_truthop): When converting a one-bit
comparison don't sign extend the constant.
......
......@@ -2460,9 +2460,11 @@ standard_68881_constant_p (x)
REAL_VALUE_FROM_CONST_DOUBLE (r, x);
/* Use REAL_VALUES_IDENTICAL instead of REAL_VALUES_EQUAL so that -0.0
is rejected. */
for (i = 0; i < 6; i++)
{
if (REAL_VALUES_EQUAL (r, values_68881[i]))
if (REAL_VALUES_IDENTICAL (r, values_68881[i]))
return (codes_68881[i]);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment