Commit ce6ec234 by Jan Hubicka Committed by Jan Hubicka

* ipa-split.c (split_function): Initialize return bb profile.

From-SVN: r248911
parent 873fa204
2017-06-06 Jan Hubicka <hubicka@ucw.cz>
* ipa-split.c (split_function): Initialize return bb profile.
2017-06-06 Jan Hubicka <hubicka@ucw.cz>
* profile.c (compute_branch_probabilities): Also initialize
EXIT_BLOCK profile.
......
......@@ -1278,6 +1278,7 @@ split_function (basic_block return_bb, struct split_point *split_point,
basic_block new_return_bb = create_basic_block (NULL, 0, return_bb);
gimple_stmt_iterator gsi = gsi_start_bb (new_return_bb);
gsi_insert_after (&gsi, gimple_build_return (NULL), GSI_NEW_STMT);
new_return_bb->count = profile_count::zero ();
while (redirected)
{
redirected = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment