aboutsummaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2007-04-08 13:14:39 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2007-04-08 13:14:39 +0000
commitcb9c159dc06636e48563e8bf42ed324a9c27198a (patch)
tree3131cbc57239573b2da8bd670e8d0495b8a896a9 /gcc/langhooks.h
parentd8a1f0fb6410959cdba82bfc82e0d37bf102fe98 (diff)
downloadgcc-cb9c159dc06636e48563e8bf42ed324a9c27198a.zip
gcc-cb9c159dc06636e48563e8bf42ed324a9c27198a.tar.gz
gcc-cb9c159dc06636e48563e8bf42ed324a9c27198a.tar.bz2
langhooks.c (lhd_tree_inlining_add_pending_fn_decls, [...]): Remove.
* langhooks.c (lhd_tree_inlining_add_pending_fn_decls, lhd_tree_inlining_anon_aggr_type_p, lhd_tree_inlining_start_inlining, lhd_tree_inlining_end_inlining): Remove. * langhooks.h (struct lang_hooks_for_tree_inlining): Remove then add_pending_fn_decls, anon_aggr_type_p, start_inlining, and end_inlining hooks. * langhooks-def.h (lhd_tree_inlining_add_pending_fn_decls, lhd_tree_inlining_anon_aggr_type_p, lhd_tree_inlining_start_inlining, lhd_tree_inlining_end_inlining): Remove prototypes. (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS, LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P, LANG_HOOKS_TREE_INLINING_START_INLINING, LANG_HOOKS_TREE_INLINING_END_INLINING): Remove. * c-objc-common.h (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it. cp/ * cp-objcp-common.h (LANG_HOOKS_TREE_INLINING_ADD_PENDING_FN_DECLS): Do not set it. (LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P): Do not set it. * tree.c (cp_add_pending_fn_decls): Remove. * cp-tree.h (cp_add_pending_fn_decls): Remove prototype. From-SVN: r123658
Diffstat (limited to 'gcc/langhooks.h')
-rw-r--r--gcc/langhooks.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/langhooks.h b/gcc/langhooks.h
index f0220fc..3906695 100644
--- a/gcc/langhooks.h
+++ b/gcc/langhooks.h
@@ -40,12 +40,8 @@ struct lang_hooks_for_tree_inlining
void *, struct pointer_set_t*);
int (*cannot_inline_tree_fn) (tree *);
int (*disregard_inline_limits) (tree);
- tree (*add_pending_fn_decls) (void *, tree);
int (*auto_var_in_fn_p) (tree, tree);
- int (*anon_aggr_type_p) (tree);
bool (*var_mod_type_p) (tree, tree);
- int (*start_inlining) (tree);
- void (*end_inlining) (tree);
tree (*convert_parm_for_inlining) (tree, tree, tree, int);
};