diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-06 20:31:01 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-06 20:31:01 +0000 |
commit | 9d1bedcf3a87a6fd0e5cc47645953202460ae40c (patch) | |
tree | e5b9de47b6878269360aeae572a4f58c9cb8fc98 /gcc | |
parent | f6ae8031b416d83a15e812c973b1d14564c6b3e4 (diff) | |
download | gcc-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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |