diff options
author | Jan Hubicka <jh@suse.cz> | 2005-09-24 14:43:30 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-09-24 12:43:30 +0000 |
commit | 06191a239b2fe34bcc7338dcefdb1f3b9289c239 (patch) | |
tree | 65dc8daa11fadff0c648fecf430944f0ddcca2f3 /gcc/tree-optimize.c | |
parent | 26b7ebf6bf2dac324aaba62bab4b07863abe2c37 (diff) | |
download | gcc-06191a239b2fe34bcc7338dcefdb1f3b9289c239.zip gcc-06191a239b2fe34bcc7338dcefdb1f3b9289c239.tar.gz gcc-06191a239b2fe34bcc7338dcefdb1f3b9289c239.tar.bz2 |
cgraph.c (cgraph_clone_edge): Make the scale gcov_type.
* cgraph.c (cgraph_clone_edge): Make the scale gcov_type.
(cgraph_clone_node): Likewise.
* cgraph.h (cgraph_clone_edge): Update prototype.
(cgraph_mark_inline_edge, cgraph_clone_inlined_nodes): Remove
duplicated prototypes; add updating argument.
* cgraphunit.c (verify_cgraph_node): Verify that counts are non-negative.
* ipa-inline.c (cgraph_clone_inlined_nodes): Allow clonning without
updating profile.
(cgraph_mark_inline_edge): Likewise.
(cgraph_mark_inline): Update use of cgraph_mark_inline_edge.
(cgraph_flatten_node): Likewise.
(cgraph_decide_recursive_inlining): Likewise.
(cgraph_decide_inlining_of_small_function): Likewise.
* tree-optimize.c (tree_rest_of_compilation): Likewise.
From-SVN: r104601
Diffstat (limited to 'gcc/tree-optimize.c')
-rw-r--r-- | gcc/tree-optimize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index 782982e..0678889 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -375,7 +375,7 @@ tree_rest_of_compilation (tree fndecl) saved_node = cgraph_clone_node (node, node->count, 1, false); for (e = saved_node->callees; e; e = e->next_callee) if (!e->inline_failed) - cgraph_clone_inlined_nodes (e, true); + cgraph_clone_inlined_nodes (e, true, false); } cfun->saved_static_chain_decl = cfun->static_chain_decl; save_body (fndecl, &cfun->saved_args, &cfun->saved_static_chain_decl); |