PR c/61271
* sel-sched-ir.c (make_regions_from_the_rest): Fix condition.
From-SVN: r214523
+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
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;
}