From: Jan Hubicka Date: Sun, 5 Feb 2017 18:13:22 +0000 (+0100) Subject: tree-eh.c (lower_resx): Sanitize profile. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c67be6dd30e840f48cc917d214c824abbe8d306;p=gcc.git tree-eh.c (lower_resx): Sanitize profile. * tree-eh.c (lower_resx): Sanitize profile. (cleanup_empty_eh_move_lp): Likewise. From-SVN: r245197 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a8c6be100e2..62b1c3be287 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-02-05 Jan Hubicka + + * tree-eh.c (lower_resx): Sanitize profile. + (cleanup_empty_eh_move_lp): Likewise. + 2017-02-05 Jan Hubicka PR tree-ssa/79347 diff --git a/gcc/tree-eh.c b/gcc/tree-eh.c index 45e6b9e4ebb..42fe9dfbbf8 100644 --- a/gcc/tree-eh.c +++ b/gcc/tree-eh.c @@ -3248,6 +3248,8 @@ lower_resx (basic_block bb, gresx *stmt, e = single_succ_edge (bb); gcc_assert (e->flags & EDGE_EH); e->flags = (e->flags & ~EDGE_EH) | EDGE_FALLTHRU; + e->probability = REG_BR_PROB_BASE; + e->count = bb->count; /* If there are no more EH users of the landing pad, delete it. */ FOR_EACH_EDGE (e, ei, e->dest->preds) @@ -4268,6 +4270,7 @@ cleanup_empty_eh_move_lp (basic_block bb, edge e_out, /* Clean up E_OUT for the fallthru. */ e_out->flags = (e_out->flags & ~EDGE_EH) | EDGE_FALLTHRU; e_out->probability = REG_BR_PROB_BASE; + e_out->count = e_out->src->count; } /* A subroutine of cleanup_empty_eh. Handle more complex cases of