diff options
author | Paolo Bonzini <bonzini@gnu.org> | 2004-08-18 07:12:19 +0000 |
---|---|---|
committer | Paolo Bonzini <bonzini@gcc.gnu.org> | 2004-08-18 07:12:19 +0000 |
commit | 5b0eba617b824ab3442bee5fc4f7c7d40d112aa6 (patch) | |
tree | d336c76e7967005387f7589452e168b55bb46da6 /gcc/config/c4x/c4x.c | |
parent | 2502b0bcf56958a20d6dabc9f0e124800d8459ee (diff) | |
download | gcc-5b0eba617b824ab3442bee5fc4f7c7d40d112aa6.zip gcc-5b0eba617b824ab3442bee5fc4f7c7d40d112aa6.tar.gz gcc-5b0eba617b824ab3442bee5fc4f7c7d40d112aa6.tar.bz2 |
c4x.c (legitimize_operands): Remove calls to preserve_subexpressions_p.
2004-04-18 Paolo Bonzini <bonzini@gnu.org>
* config/c4x/c4x.c (legitimize_operands): Remove calls to
preserve_subexpressions_p.
From-SVN: r86175
Diffstat (limited to 'gcc/config/c4x/c4x.c')
-rw-r--r-- | gcc/config/c4x/c4x.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index ead3631..e3ab61b 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -3932,7 +3932,6 @@ legitimize_operands (enum rtx_code code, rtx *operands, enum machine_mode mode) && TARGET_HOIST && optimize > 0 && GET_CODE (operands[1]) == CONST_INT - && preserve_subexpressions_p () && rtx_cost (operands[1], code) > 1) operands[1] = force_reg (mode, operands[1]); @@ -3950,7 +3949,6 @@ legitimize_operands (enum rtx_code code, rtx *operands, enum machine_mode mode) && TARGET_HOIST && optimize > 1 && GET_CODE (operands[2]) == CONST_INT - && preserve_subexpressions_p () && rtx_cost (operands[2], code) > 1) operands[2] = force_reg (mode, operands[2]); |