Use rtx_insn in more places in haifa-sched.c
authorDavid Malcolm <dmalcolm@redhat.com>
Tue, 26 Aug 2014 19:52:49 +0000 (19:52 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Tue, 26 Aug 2014 19:52:49 +0000 (19:52 +0000)
gcc/
2014-08-26  David Malcolm  <dmalcolm@redhat.com>

* haifa-sched.c (struct model_insn_info): Strengthen field "insn"
from rtx to rtx_insn *.
(model_add_to_schedule): Likewise for locals "start", "end",
"iter".

From-SVN: r214545

gcc/ChangeLog
gcc/haifa-sched.c

index a1c7898db4c5ad265143531b22fe6e40b3f92cc9..68277111175cd644a8452e616880a72aede31d64 100644 (file)
@@ -1,3 +1,10 @@
+2014-08-26  David Malcolm  <dmalcolm@redhat.com>
+
+       * haifa-sched.c (struct model_insn_info): Strengthen field "insn"
+       from rtx to rtx_insn *.
+       (model_add_to_schedule): Likewise for locals "start", "end",
+       "iter".
+
 2014-08-26  David Malcolm  <dmalcolm@redhat.com>
 
        * rtl.h (duplicate_insn_chain): Strengthen both params from rtx to
index 54691a30db128679c64809e6111e12bdad6a48cd..d9f3d79a00352493734d520dce2d48b9916481db 100644 (file)
@@ -1815,7 +1815,7 @@ struct model_pressure_data {
    than the main schedule.  */
 struct model_insn_info {
   /* The instruction itself.  */
-  rtx insn;
+  rtx_insn *insn;
 
   /* If this instruction is in model_worklist, these fields link to the
      previous (higher-priority) and next (lower-priority) instructions
@@ -3351,7 +3351,7 @@ model_add_to_schedule (rtx insn)
 static void
 model_analyze_insns (void)
 {
-  rtx start, end, iter;
+  rtx_insn *start, *end, *iter;
   sd_iterator_def sd_it;
   dep_t dep;
   struct model_insn_info *insn, *con;