diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-19 18:19:34 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-19 18:19:34 -0400 |
commit | b2796a4bddc3440f9955e0d020496ab6f18bc8d8 (patch) | |
tree | 7006b5374dc940a56831671bafaffffd598ed995 /gcc/cse.c | |
parent | 7fe4336e989ab447811231573647ef15f871c093 (diff) | |
download | gcc-b2796a4bddc3440f9955e0d020496ab6f18bc8d8.zip gcc-b2796a4bddc3440f9955e0d020496ab6f18bc8d8.tar.gz gcc-b2796a4bddc3440f9955e0d020496ab6f18bc8d8.tar.bz2 |
(find_comparison_args): Look for comparison operations if the second arg is 0 in any mode.
(find_comparison_args): Look for comparison operations if the second arg is
0 in any mode.
(record_jump_cond): Don't make classes equivalent for floating-point equality
comparison.
From-SVN: r1900
Diffstat (limited to 'gcc/cse.c')
-rw-r--r-- | gcc/cse.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -2639,7 +2639,7 @@ find_comparison_args (code, parg1, parg2) /* If ARG2 is const0_rtx, see what ARG1 is equivalent to. */ - while (arg2 == const0_rtx) + while (arg2 == CONST0_RTX (GET_MODE (arg1))) { /* Set non-zero when we find something of interest. */ rtx x = 0; @@ -5366,8 +5366,12 @@ record_jump_cond (code, mode, op0, op1, reversed_nonequality) op1_elt = lookup (op1, op1_hash_code, mode); /* If we aren't setting two things equal all we can do is save this - comparison. */ - if (code != EQ) + comparison. Similarly if this is floating-point. In the latter + case, OP1 might be zero and both -0.0 and 0.0 are equal to it. + If we record the equality, we might inadvertently delete code + whose intent was to change -0 to +0. */ + + if (code != EQ || GET_MODE_CLASS (GET_MODE (op0)) == MODE_FLOAT) { /* If we reversed a floating-point comparison, if OP0 is not a register, or if OP1 is neither a register or constant, we can't |