Commit 30a1181a by Michael Hayes Committed by Michael Hayes

* loop.c (emit_iv_add_mult): Use single_set to examine new insn.

From-SVN: r38764
parent cabf3891
2001-01-07 Michael Hayes <mhayes@redhat.com>
* loop.c (emit_iv_add_mult): Use single_set to examine new insn.
2001-01-07 Richard Henderson <rth@redhat.com>
* sched-rgn.c (is_cfg_nonregular): Fix thinko's last change.
......
......@@ -6904,9 +6904,12 @@ emit_iv_add_mult (b, m, a, reg, insert_before)
record_base_value (REGNO (SET_DEST (set)), SET_SRC (set), 0);
}
}
else if (GET_CODE (seq) == SET
&& GET_CODE (SET_DEST (seq)) == REG)
record_base_value (REGNO (SET_DEST (seq)), SET_SRC (seq), 0);
else
{
rtx set = single_set (seq);
if (set && GET_CODE (SET_DEST (set)) == REG)
record_base_value (REGNO (SET_DEST (set)), SET_SRC (set), 0);
}
}
/* Similar to emit_iv_add_mult, but compute cost rather than emitting
......
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