(simplify_binary_operation, case MINUS): Fix backwards

test added in last change.

From-SVN: r4859
This commit is contained in:
Richard Stallman 1993-07-06 20:31:01 +00:00
parent f6ae8031b4
commit 9d1bedcf3a

View File

@ -3490,7 +3490,7 @@ simplify_binary_operation (code, mode, op0, op1)
/* None of these optimizations can be done for IEEE
floating point. */
if (TARGET_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
&& ! FLOAT_MODE_P (mode))
&& FLOAT_MODE_P (mode))
break;
/* We can't assume x-x is 0 even with non-IEEE floating point. */