diff options
author | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-21 21:08:33 +0000 |
---|---|---|
committer | dmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-08-21 21:08:33 +0000 |
commit | cb534875a2ec883df48f339dfe8ddb063ceabc2b (patch) | |
tree | 3a329291c67a05da349a39bf9c87136ef13e5566 /gcc/cfgloop.c | |
parent | c093ac49fcb3f639905b55c25217fcf2d905189f (diff) | |
download | gcc-cb534875a2ec883df48f339dfe8ddb063ceabc2b.tar.gz |
cfgloop.c: Use rtx_insn
gcc/
2014-08-21 David Malcolm <dmalcolm@redhat.com>
* cfgloop.c (loop_exits_from_bb_p): Strengthen local "insn" from
rtx to rtx_insn *.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@214293 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgloop.c')
-rw-r--r-- | gcc/cfgloop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index 8f7e2658e44..dcf23ca1fbb 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -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; |