aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1993-07-06 20:31:01 +0000
committerRichard Stallman <rms@gnu.org>1993-07-06 20:31:01 +0000
commit9d1bedcf3a87a6fd0e5cc47645953202460ae40c (patch)
treee5b9de47b6878269360aeae572a4f58c9cb8fc98
parentf6ae8031b416d83a15e812c973b1d14564c6b3e4 (diff)
downloadgcc-9d1bedcf3a87a6fd0e5cc47645953202460ae40c.zip
gcc-9d1bedcf3a87a6fd0e5cc47645953202460ae40c.tar.gz
gcc-9d1bedcf3a87a6fd0e5cc47645953202460ae40c.tar.bz2
(simplify_binary_operation, case MINUS): Fix backwards
test added in last change. From-SVN: r4859
-rw-r--r--gcc/cse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cse.c b/gcc/cse.c
index 4f94923..f85d0f9 100644
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -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. */