gcc/
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* fwprop.c (local_ref_killed_between_p): Strengthen params "from",
"to" and local "insn" from rtx to rtx_insn *.
From-SVN: r214541
+2014-08-26 David Malcolm <dmalcolm@redhat.com>
+
+ * fwprop.c (local_ref_killed_between_p): Strengthen params "from",
+ "to" and local "insn" from rtx to rtx_insn *.
+
2014-08-26 David Malcolm <dmalcolm@redhat.com>
* sel-sched.c (find_place_for_bookkeeping): Strengthen local "insn"
between FROM to (but not including) TO. */
static bool
-local_ref_killed_between_p (df_ref ref, rtx from, rtx to)
+local_ref_killed_between_p (df_ref ref, rtx_insn *from, rtx_insn *to)
{
- rtx insn;
+ rtx_insn *insn;
for (insn = from; insn != to; insn = NEXT_INSN (insn))
{