From: aoliva Date: Mon, 29 Oct 2012 19:27:09 +0000 (+0000) Subject: PR debug/54693 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eb912266699a6a5636b1042d4e1e555cc41223f3;p=thirdparty%2Fgcc.git PR debug/54693 * loop-unroll.c (loop_exit_at_end_p): Skip debug insns. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@192958 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 94dc1035bbfc..fd75ccd3a3eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-10-29 Alexandre Oliva + + PR debug/54693 + * loop-unroll.c (loop_exit_at_end_p): Skip debug insns. + 2012-10-29 Alexandre Oliva PR debug/54693 diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c index 92e3c1a127cd..a539b42a3da0 100644 --- a/gcc/loop-unroll.c +++ b/gcc/loop-unroll.c @@ -215,7 +215,7 @@ loop_exit_at_end_p (struct loop *loop) /* Check that the latch is empty. */ FOR_BB_INSNS (loop->latch, insn) { - if (INSN_P (insn)) + if (NONDEBUG_INSN_P (insn)) return false; }