diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-10-20 13:22:08 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-10-20 13:22:08 -0700 |
commit | 2c14c928e7281f5ff05d76f9331580e016d79583 (patch) | |
tree | 8fe53e0dd151e06ccf0bb7ddc36d0747d1ba8d8e | |
parent | c25d3f2094341937f95677be38ef0df06666cd06 (diff) | |
download | gcc-2c14c928e7281f5ff05d76f9331580e016d79583.zip gcc-2c14c928e7281f5ff05d76f9331580e016d79583.tar.gz gcc-2c14c928e7281f5ff05d76f9331580e016d79583.tar.bz2 |
(movdf_internal2+1): Disable when TARGET_64BIT.
From-SVN: r8323
-rw-r--r-- | gcc/config/mips/mips.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 9b9959b..99782b9 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -3184,10 +3184,9 @@ move\\t%0,%z4\\n\\ (define_split [(set (match_operand:DF 0 "register_operand" "") (match_operand:DF 1 "register_operand" ""))] - "reload_completed && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE + "reload_completed && !TARGET_64BIT && !TARGET_DEBUG_D_MODE && !TARGET_DEBUG_G_MODE && GET_CODE (operands[0]) == REG && GP_REG_P (REGNO (operands[0])) && GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))" - [(set (subreg:SI (match_dup 0) 0) (subreg:SI (match_dup 1) 0)) (set (subreg:SI (match_dup 0) 1) (subreg:SI (match_dup 1) 1))] "") |