Commit 025cc923 by Richard Kenner

(attach_deaths): In last change, use find_reg_note instead of

find_regno_note.

From-SVN: r9883
parent a642a781
...@@ -2869,7 +2869,7 @@ attach_deaths (x, insn, set_p) ...@@ -2869,7 +2869,7 @@ attach_deaths (x, insn, set_p)
for the case where the SET_DEST is a subreg of regno, as for the case where the SET_DEST is a subreg of regno, as
dead_or_set_p handles subregs specially. */ dead_or_set_p handles subregs specially. */
if (! all_needed && ! dead_or_set_p (insn, x) if (! all_needed && ! dead_or_set_p (insn, x)
&& ! find_regno_note (insn, REG_UNUSED, regno)) && ! find_reg_note (insn, REG_UNUSED, x))
{ {
/* Check for the case where the register dying partially /* Check for the case where the register dying partially
overlaps the register set by this insn. */ overlaps the register set by this insn. */
......
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