Commit c36fed0c by Aldy Hernandez Committed by Aldy Hernandez

graphite-sese-to-poly.c (split_reduction_stmt): Skip debug statements before splitting block.

        * graphite-sese-to-poly.c (split_reduction_stmt): Skip debug
        statements before splitting block.

From-SVN: r157494
parent 17a7cb4e
2010-03-16 Aldy Hernandez <aldyh@redhat.com>
* graphite-sese-to-poly.c (split_reduction_stmt): Skip debug
statements before splitting block.
2010-03-16 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* doc/sourcebuild.texi (Testsuites): Fix markup.
......
......@@ -2466,7 +2466,7 @@ split_reduction_stmt (gimple stmt)
split_block (bb, stmt);
if (gsi_one_before_end_p (gsi_start_bb (bb)))
if (gsi_one_before_end_p (gsi_start_nondebug_bb (bb)))
return bb;
gsi = gsi_last_bb (bb);
......
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