diff options
author | Richard Biener <rguenther@suse.de> | 2014-07-24 08:08:26 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2014-07-24 08:08:26 +0000 |
commit | b4c9af965f74fe9f67adf9e0343e4aec41da6c8e (patch) | |
tree | d651168c51e1b1aa9a90adba74a92d53e8a5798c /gcc/tree-inline.h | |
parent | 997ef9e7389f4962edc8c504a3d9753ab806ed6f (diff) | |
download | gcc-b4c9af965f74fe9f67adf9e0343e4aec41da6c8e.tar.gz |
tree-inline.h (estimate_move_cost): Add speed_p parameter.
2014-07-24 Richard Biener <rguenther@suse.de>
* tree-inline.h (estimate_move_cost): Add speed_p parameter.
* tree-inline.c (estimate_move_cost): Add speed_p parameter
and adjust MOVE_RATIO query accordingly.
(estimate_num_insns): Adjust callers.
* ipa-prop.c (ipa_populate_param_decls): Likewise.
* ipa-cp.c (gather_context_independent_values,
estimate_local_effects): Likewise.
* ipa-split.c (consider_split): Likewise.
From-SVN: r212970
Diffstat (limited to 'gcc/tree-inline.h')
-rw-r--r-- | gcc/tree-inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.h b/gcc/tree-inline.h index 13c551666dd..2a5daaf7f61 100644 --- a/gcc/tree-inline.h +++ b/gcc/tree-inline.h @@ -191,7 +191,7 @@ tree maybe_inline_call_in_expr (tree); bool tree_inlinable_function_p (tree); tree copy_tree_r (tree *, int *, void *); tree copy_decl_no_change (tree decl, copy_body_data *id); -int estimate_move_cost (tree type); +int estimate_move_cost (tree type, bool); int estimate_num_insns (gimple, eni_weights *); int estimate_num_insns_fn (tree, eni_weights *); int count_insns_seq (gimple_seq, eni_weights *); |