diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-20 11:28:14 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-20 11:28:14 +0000 |
commit | 2ef41604b0f880bf5b9d4be027df7335e4ec166f (patch) | |
tree | 7a357b039785ec8b4512742e9512b49128d47deb /gcc/langhooks.h | |
parent | 20a8f962f826727be1912aaeb411681561241240 (diff) | |
download | gcc-2ef41604b0f880bf5b9d4be027df7335e4ec166f.tar.gz |
2007-08-20 Richard Guenther <rguenther@suse.de>
* langhooks-def.h (lhd_tree_inlining_auto_var_in_fn_p): Remove.
(LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P): Likewise.
(LANG_HOOKS_TREE_INLINING_INITIALIZER): Remove initializer for
auto_var_in_fn_p langhook.
* langhooks.c (lhd_tree_inlining_auto_var_in_fn_p): Rename and
move ...
* tree.c (auto_var_in_fn_p): ... here.
(find_var_from_fn): Call auto_var_in_fn_p directly.
* langhooks.h (lang_hooks_for_tree_inlining): Remove
auto_var_in_fn_p langhook.
* tree-inline.c (remap_decls): Call auto_var_in_fn_p directly.
(copy_body_r): Likewise.
(self_inlining_addr_expr): Likewise.
* tree.h (auto_var_in_fn_p): Declare.
cp/
* cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_AUTO_VAR_IN_FN_P):
Remove.
* cp-tree.h (cp_auto_var_in_fn_p): Remove.
(nonstatic_local_decl_p): Likewise.
* tree.c (cp_auto_var_in_fn_p): Remove.
* decl.c (nonstatic_local_decl_p): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127643 138bc75d-0d04-0410-961f-82ee72b054a4
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 299ec8f838a..0032e555895 100644 --- a/gcc/langhooks.h +++ b/gcc/langhooks.h @@ -37,7 +37,6 @@ struct lang_hooks_for_tree_inlining { int (*cannot_inline_tree_fn) (tree *); int (*disregard_inline_limits) (const_tree); - int (*auto_var_in_fn_p) (const_tree, const_tree); bool (*var_mod_type_p) (tree, tree); }; |