diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2014-03-23 11:29:42 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-03-23 11:29:42 +0000 |
commit | f87604f8d2b64eb3287b061dfe0d22f8d688ccd0 (patch) | |
tree | 9b8b12ccfa42b297cf682e8aed3e487f71c2ab49 /gcc/bb-reorder.c | |
parent | 8796f98a5f14ea08fc2534b7b2bd3da04500e268 (diff) | |
download | gcc-f87604f8d2b64eb3287b061dfe0d22f8d688ccd0.tar.gz |
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
Diffstat (limited to 'gcc/bb-reorder.c')
-rw-r--r-- | gcc/bb-reorder.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/bb-reorder.c b/gcc/bb-reorder.c index 3364d93fea2..fa6f62fbe68 100644 --- a/gcc/bb-reorder.c +++ b/gcc/bb-reorder.c @@ -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; |