]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
cfgloop.c: Use rtx_insn
authorDavid Malcolm <dmalcolm@redhat.com>
Thu, 21 Aug 2014 21:08:33 +0000 (21:08 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Thu, 21 Aug 2014 21:08:33 +0000 (21:08 +0000)
gcc/
2014-08-21  David Malcolm  <dmalcolm@redhat.com>

* cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
rtx to rtx_insn *.

From-SVN: r214293

gcc/ChangeLog
gcc/cfgloop.c

index 5fd1b9cf15f812e8468ff81b5559fca175f15dc5..7d33cbe57b2be390c88d2f054467a931fdb3a298 100644 (file)
@@ -1,3 +1,8 @@
+2014-08-21  David Malcolm  <dmalcolm@redhat.com>
+
+       * cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
+       rtx to rtx_insn *.
+
 2014-08-21  David Malcolm  <dmalcolm@redhat.com>
 
        * basic-block.h (flow_find_cross_jump): Strengthen params 3 and 4
index 8f7e2658e4498d600dff89fdbd5e3d8e4da87d75..dcf23ca1fbbf240d3344879dce128bd3c901d2f9 100644 (file)
@@ -1736,7 +1736,7 @@ loop_exits_from_bb_p (struct loop *loop, basic_block bb)
 location_t
 get_loop_location (struct loop *loop)
 {
-  rtx insn = NULL;
+  rtx_insn *insn = NULL;
   struct niter_desc *desc = NULL;
   edge exit;