Commit 2c14c928 by Jim Wilson

(movdf_internal2+1): Disable when TARGET_64BIT.

From-SVN: r8323
parent c25d3f20
...@@ -3184,10 +3184,9 @@ move\\t%0,%z4\\n\\ ...@@ -3184,10 +3184,9 @@ move\\t%0,%z4\\n\\
(define_split (define_split
[(set (match_operand:DF 0 "register_operand" "") [(set (match_operand:DF 0 "register_operand" "")
(match_operand:DF 1 "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[0]) == REG && GP_REG_P (REGNO (operands[0]))
&& GET_CODE (operands[1]) == REG && GP_REG_P (REGNO (operands[1]))" && 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) 0) (subreg:SI (match_dup 1) 0))
(set (subreg:SI (match_dup 0) 1) (subreg:SI (match_dup 1) 1))] (set (subreg:SI (match_dup 0) 1) (subreg:SI (match_dup 1) 1))]
"") "")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment