re PR rtl-optimization/60601 (profiledbootstrap fails with Ada)
PR rtl-optimization/60601 * bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere. * gcc.c (eval_spec_function): Initialize save_growing_value. From-SVN: r208770
This commit is contained in:
parent
8796f98a5f
commit
f87604f8d2
@ -1,3 +1,10 @@
|
||||
2014-03-23 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
PR rtl-optimization/60601
|
||||
* bb-reorder.c (fix_up_fall_thru_edges): Test EDGE_FALLTHRU everywhere.
|
||||
|
||||
* gcc.c (eval_spec_function): Initialize save_growing_value.
|
||||
|
||||
2014-03-22 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR sanitizer/60613
|
||||
|
@ -1826,9 +1826,8 @@ fix_up_fall_thru_edges (void)
|
||||
edge e;
|
||||
edge_iterator ei;
|
||||
|
||||
/* Find EDGE_CAN_FALLTHRU edge. */
|
||||
FOR_EACH_EDGE (e, ei, cur_bb->succs)
|
||||
if (e->flags & EDGE_CAN_FALLTHRU)
|
||||
if (e->flags & EDGE_FALLTHRU)
|
||||
{
|
||||
fall_thru = e;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user