diff options
author | Michael Hayes <m.hayes@gcc.gnu.org> | 2004-01-26 00:28:33 +0000 |
---|---|---|
committer | Michael Hayes <m.hayes@gcc.gnu.org> | 2004-01-26 00:28:33 +0000 |
commit | b6ab76d653319cd1136a4a619d714d45c9ce12f0 (patch) | |
tree | 9422d5c2b50a3adac7af468fb48180569df8f8e6 | |
parent | b7bbb57472941fa0fd404dde046a1ed9f5c497f0 (diff) | |
download | gcc-b6ab76d653319cd1136a4a619d714d45c9ce12f0.zip gcc-b6ab76d653319cd1136a4a619d714d45c9ce12f0.tar.gz gcc-b6ab76d653319cd1136a4a619d714d45c9ce12f0.tar.bz2 |
Fix last commit.
From-SVN: r76608
-rw-r--r-- | gcc/config/c4x/c4x.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/c4x/c4x.c b/gcc/config/c4x/c4x.c index 4537711..31c1e83 100644 --- a/gcc/config/c4x/c4x.c +++ b/gcc/config/c4x/c4x.c @@ -3896,21 +3896,6 @@ int valid_operands (enum rtx_code code, rtx *operands, enum machine_mode mode) } -int valid_operands (enum rtx_code code, rtx *operands, enum machine_mode mode) -{ - - /* If we are not optimizing then we have to let anything go and let - reload fix things up. instantiate_decl in function.c can produce - invalid insns by changing the offset of a memory operand from a - valid one into an invalid one, when the second operand is also a - memory operand. The alternative is not to allow two memory - operands for an insn when not optimizing. The problem only rarely - occurs, for example with the C-torture program DFcmp.c. */ - - return ! optimize || c4x_valid_operands (code, operands, mode, 0); -} - - int legitimize_operands (enum rtx_code code, rtx *operands, enum machine_mode mode) { |