Commit 8efb4b35 by Alexandre Oliva Committed by Alexandre Oliva

re PR debug/54693 (VTA guality issues with loops)

PR debug/54693
* loop-unroll.c (loop_exit_at_end_p): Skip debug insns.

From-SVN: r192958
parent 2718e70e
2012-10-29 Alexandre Oliva <aoliva@redhat.com>
PR debug/54693
* loop-unroll.c (loop_exit_at_end_p): Skip debug insns.
2012-10-29 Alexandre Oliva <aoliva@redhat.com>
PR debug/54693
* config/i386/i386.c (add_parameter_dependencies): Stop
backward scan at the insn before the incoming head.
(ix86_dependencies_evaluation_hook): Skip debug insns. Stop
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment