Commit 9fd5bb62 by Jim Wilson

(distribute_notes, REG_DEAD case): When check to see

if insn uses register, also call find_regno_fusage.

From-SVN: r7683
parent 55be783d
...@@ -10573,7 +10573,8 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1) ...@@ -10573,7 +10573,8 @@ distribute_notes (notes, from_insn, i3, i2, elim_i2, elim_i1)
int i; int i;
for (i = regno; i < endregno; i++) for (i = regno; i < endregno; i++)
if (! refers_to_regno_p (i, i + 1, PATTERN (place), 0)) if (! refers_to_regno_p (i, i + 1, PATTERN (place), 0)
&& ! find_regno_fusage (place, USE, i))
{ {
rtx piece = gen_rtx (REG, reg_raw_mode[i], i); rtx piece = gen_rtx (REG, reg_raw_mode[i], i);
rtx p; rtx p;
......
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