GCC with my recent patch improving cost calculation for pseudos with
equivalence may generate different code with and without debug info
and as the result i686 bootstrap fails on i686. The patch fixes this
bug.
gcc/ChangeLog:
PR rtl-optimization/112107
* ira-costs.cc: (calculate_equiv_gains): Use NONDEBUG_INSN_P
instead of INSN_P.
= ira_bb_nodes[bb->index].parent->regno_allocno_map;
FOR_BB_INSNS (bb, insn)
{
- if (!INSN_P (insn) || !get_equiv_regno (PATTERN (insn), regno, subreg)
+ if (!NONDEBUG_INSN_P (insn)
+ || !get_equiv_regno (PATTERN (insn), regno, subreg)
|| !bitmap_bit_p (&equiv_pseudos, regno))
continue;
rtx subst = ira_reg_equiv[regno].memory;