Commit d9c16ed2 by Richard Biener Committed by Richard Biener

cfgloop.c (get_loop_body_in_bfs_order): Fix assert.

2015-06-09  Richard Biener  <rguenther@suse.de>

	* cfgloop.c (get_loop_body_in_bfs_order): Fix assert.

From-SVN: r224268
parent 2bdb7f56
2015-06-09 Richard Biener <rguenther@suse.de>
* cfgloop.c (get_loop_body_in_bfs_order): Fix assert.
2015-06-09 Richard Biener <rguenther@suse.de>
PR middle-end/66413
* tree-inline.c (insert_init_debug_bind): Unshare value.
......
......@@ -954,7 +954,7 @@ get_loop_body_in_bfs_order (const struct loop *loop)
}
}
gcc_assert (i >= vc);
gcc_assert (i > vc);
bb = blocks[vc++];
}
......
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