diff options
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 93d79d0..318defd 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -569,10 +569,13 @@ compute_branch_probabilities (void) } } /* Otherwise try to preserve the existing REG_BR_PROB probabilities - tree based profile guessing put into code. */ + tree based profile guessing put into code. BB can be the + ENTRY_BLOCK, and it can have multiple (fake) successors in + EH cases, but it still has no code; don't crash in this case. */ else if (profile_status == PROFILE_ABSENT && !ir_type () && EDGE_COUNT (bb->succs) > 1 + && BB_END (bb) && (note = find_reg_note (BB_END (bb), REG_BR_PROB, 0))) { int prob = INTVAL (XEXP (note, 0)); |