Commit 011063bd by Jim Wilson

(constrain_operands): When checking earlyclobbers, use

operands_match_p instead of rtx_equal_p.

From-SVN: r14300
parent d5042f7b
......@@ -1945,8 +1945,8 @@ constrain_operands (insn_code_num, strict)
/* Ignore things like match_operator operands. */
&& *insn_operand_constraint[insn_code_num][opno] != 0
&& ! (matching_operands[opno] == eopno
&& rtx_equal_p (recog_operand[opno],
recog_operand[eopno]))
&& operands_match_p (recog_operand[opno],
recog_operand[eopno]))
&& ! safe_from_earlyclobber (recog_operand[opno],
recog_operand[eopno]))
lose = 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