From 011063bd06a65aaa62f19f1991a19fa575b240f9 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Tue, 24 Jun 1997 19:18:56 -0700 Subject: [PATCH] (constrain_operands): When checking earlyclobbers, use operands_match_p instead of rtx_equal_p. From-SVN: r14300 --- gcc/recog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/recog.c b/gcc/recog.c index 92fc6d8..5b26857 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -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; -- 2.7.4