Commit 13dfd554 by Marek Polacek Committed by Marek Polacek

re PR c/61271 (10 * possible coding error with logical not (!))

	PR c/61271
	* sel-sched-ir.c (make_regions_from_the_rest): Fix condition.

From-SVN: r214523
parent d20cd506
2014-08-26 Marek Polacek <polacek@redhat.com>
PR c/61271
* sel-sched-ir.c (make_regions_from_the_rest): Fix condition.
2014-08-26 Evandro Menezes <e.menezes@samsung.com>
* config/arm/aarch64/aarch64.c (generic_addrcost_table): Delete
......
......@@ -6185,7 +6185,7 @@ make_regions_from_the_rest (void)
FOR_EACH_BB_FN (bb, cfun)
{
if (bb->loop_father && !bb->loop_father->num == 0
if (bb->loop_father && bb->loop_father->num != 0
&& !(bb->flags & BB_IRREDUCIBLE_LOOP))
loop_hdr[bb->index] = bb->loop_father->num;
}
......
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