Commit edd2e9fe by Richard Kenner

(movdf): Do not consider extended registers when doing define_split.

From-SVN: r7015
parent 8c9f0694
......@@ -1997,7 +1997,9 @@
(define_split
[(set (match_operand:DF 0 "register_operand" "=r")
(match_operand:DF 1 "register_operand" "r"))]
"reload_completed"
"reload_completed
&& GET_CODE (operands[0]) == REG && !XRF_REGNO_P (REGNO (operands[0]))
&& GET_CODE (operands[1]) == REG && !XRF_REGNO_P (REGNO (operands[1]))"
[(set (match_dup 2) (match_dup 3))
(set (match_dup 4) (match_dup 5))]
"
......
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