diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index 3261fce..c1f80727 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -3850,8 +3850,8 @@ expand_gimple_tailcall (basic_block bb, gcall *stmt, bool *can_fallthru) e = make_edge (bb, EXIT_BLOCK_PTR_FOR_FN (cfun), EDGE_ABNORMAL | EDGE_SIBCALL); - e->probability += probability; - e->count += count; + e->probability = probability; + e->count = count; BB_END (bb) = last; update_bb_for_insn (bb); |