From 2c14c928e7281f5ff05d76f9331580e016d79583 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Thu, 20 Oct 1994 13:22:08 -0700 Subject: [PATCH] (movdf_internal2+1): Disable when TARGET_64BIT. From-SVN: r8323 --- gcc/config/mips/mips.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 9b9959b6845..99782b940e5 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))] "") -- 2.30.2