diff options
author | Jan Hubicka <jh@suse.cz> | 2005-07-28 23:45:27 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-07-28 21:45:27 +0000 |
commit | c5a4444c50a61d6f787d4d238ed007ad626a3f6d (patch) | |
tree | a1f5a77fc57f6b24e2832b89c2a840ee9c6bb3f5 /gcc/tree-inline.c | |
parent | 260883c8981dc45d44d9d7a82c238d625a43b813 (diff) | |
download | gcc-c5a4444c50a61d6f787d4d238ed007ad626a3f6d.zip gcc-c5a4444c50a61d6f787d4d238ed007ad626a3f6d.tar.gz gcc-c5a4444c50a61d6f787d4d238ed007ad626a3f6d.tar.bz2 |
cgraph.c (cgraph_clone_edge): New UPDATE_ORIGINAL argument.
* cgraph.c (cgraph_clone_edge): New UPDATE_ORIGINAL argument.
(cgraph_clone_node): Likewise.
* cgraph.h (cgraph_clone_edge): Update prototype.
(cgraph_clone_node): Likewise.
* ipa-inline.c (cgraph_clone_inlined_nodes): Update call of
cgraph_clone_node.
(lookup_recursive_calls): Consider profile.
(cgraph_decide_recursive_inlining): Fix updating; use new
probability argument; use profile.
* params.def (PARAM_MIN_INLINE_RECURSIVE_PROBABILITY): New.
* tree-inline.c (copy_bb): Update clal of clone_edge.
* tree-optimize.c (tree_rest_of_compilation): UPdate cal of clone_node.
* invoke.texi (min-inline-recursive-probability): Document.
From-SVN: r102521
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 21d8ac0..fa69703 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -752,7 +752,7 @@ copy_bb (inline_data *id, basic_block bb, int frequency_scale, int count_scale) edge = cgraph_edge (id->current_node, orig_stmt); if (edge) cgraph_clone_edge (edge, id->node, stmt, - REG_BR_PROB_BASE, 1); + REG_BR_PROB_BASE, 1, true); } } /* If you think we can abort here, you are wrong. |