diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-01-24 12:01:29 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2004-01-24 12:01:29 +0100 |
commit | 5473cfa7fd6c83fc6f7f1575dad275690aa29ded (patch) | |
tree | 80619cfb79cfe4992a98b70a94b5b710e8868a5d /gcc/simplify-rtx.c | |
parent | a51530561272552af3a5d99264da1e57028d4d27 (diff) | |
download | gcc-5473cfa7fd6c83fc6f7f1575dad275690aa29ded.zip gcc-5473cfa7fd6c83fc6f7f1575dad275690aa29ded.tar.gz gcc-5473cfa7fd6c83fc6f7f1575dad275690aa29ded.tar.bz2 |
simplify-rtx.c (simplify_relational_operation): Don't simplify address == constant into address + -constant == 0.
* simplify-rtx.c (simplify_relational_operation): Don't
simplify address == constant into address + -constant == 0.
* gcc.dg/20040123-1.c: New test.
From-SVN: r76490
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index cebbf04..7f6b549 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -2530,6 +2530,8 @@ simplify_relational_operation (enum rtx_code code, enum machine_mode mode, && ! ((GET_CODE (op0) == REG || GET_CODE (trueop0) == CONST_INT) && (GET_CODE (op1) == REG || GET_CODE (trueop1) == CONST_INT)) && 0 != (tem = simplify_binary_operation (MINUS, mode, op0, op1)) + /* We cannot do this for == or != if tem is a nonzero address. */ + && ((code != EQ && code != NE) || ! nonzero_address_p (tem)) && code != GTU && code != GEU && code != LTU && code != LEU) return simplify_relational_operation (signed_condition (code), mode, tem, const0_rtx); |