diff options
author | Richard Guenther <rguenther@suse.de> | 2007-08-20 11:37:08 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2007-08-20 11:37:08 +0000 |
commit | 1d51f406677ceea381da32d39f43f4084fd8d69f (patch) | |
tree | 80efab936a1dcc2f70ed51c276471013fcb4ee5c /gcc/langhooks.h | |
parent | 50886bf1f9143bd97180043ceaddde5061d43e78 (diff) | |
download | gcc-1d51f406677ceea381da32d39f43f4084fd8d69f.tar.gz |
c-objc-common.c (c_disregard_inline_limits): Remove.
2007-08-20 Richard Guenther <rguenther@suse.de>
* c-objc-common.c (c_disregard_inline_limits): Remove.
* c-objc-common.h (c_disregard_inline_limits): Likewise.
* cgraphunit.c (cgraph_process_new_functions): Call
disregard_inline_limits_p.
(cgraph_preserve_function_body_p): Likewise.
* ipa-inline.c (compute_inline_parameters): Likewise.
* langhooks-def.h (lhd_tree_inlining_disregard_inline_limits):
Remove.
(LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS): Remove.
(LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove initializer for
disregard_inline_limits langhook.
* langhooks.c (lhd_tree_inlining_disregard_inline_limits):
Remove.
* langhooks.h (lang_hooks_for_tree_inlining): Remove
disregard_inline_limits langhook.
* tree-inline.c (disregard_inline_limits_p): New function.
* tree-inline.h (disregard_inline_limits_p): Declare.
From-SVN: r127644
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r-- | gcc/langhooks.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h index 0032e555895..a25371c05ee 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -36,7 +36,6 @@ typedef void (*lang_print_tree_hook) (FILE *, tree, int indent); struct lang_hooks_for_tree_inlining { int (*cannot_inline_tree_fn) (tree *); - int (*disregard_inline_limits) (const_tree); bool (*var_mod_type_p) (tree, tree); }; |