From: Richard Sandiford Date: Mon, 30 Sep 2019 16:20:12 +0000 (+0000) Subject: Remove global call sets: cfgcleanup.c X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=016996861c7333f42772c84a5a2a4e52e0bd07c5;p=gcc.git Remove global call sets: cfgcleanup.c old_insns_match_p just tests whether two instructions are similar enough to merge. With insn_callee_abi it makes more sense to compare the ABIs directly. 2019-09-30 Richard Sandiford gcc/ * cfgcleanup.c (old_insns_match_p): Compare the ABIs of calls instead of the call-clobbered sets. From-SVN: r276314 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d912a878161..a3e4ff24c8d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-09-30 Richard Sandiford + + * cfgcleanup.c (old_insns_match_p): Compare the ABIs of calls + instead of the call-clobbered sets. + 2019-09-30 Richard Sandiford * caller-save.c (setup_save_areas): Remove redundant |s of diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c index 329fa0cc901..ced7e0a4283 100644 --- a/gcc/cfgcleanup.c +++ b/gcc/cfgcleanup.c @@ -1227,13 +1227,7 @@ old_insns_match_p (int mode ATTRIBUTE_UNUSED, rtx_insn *i1, rtx_insn *i2) } } - HARD_REG_SET i1_used = insn_callee_abi (i1).full_reg_clobbers (); - HARD_REG_SET i2_used = insn_callee_abi (i2).full_reg_clobbers (); - /* ??? This preserves traditional behavior; it might not be needed. */ - i1_used |= fixed_reg_set; - i2_used |= fixed_reg_set; - - if (i1_used != i2_used) + if (insn_callee_abi (i1) != insn_callee_abi (i2)) return dir_none; }