summaryrefslogtreecommitdiff
path: root/gcc/langhooks.h
diff options
context:
space:
mode:
authorsteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2007-04-08 13:14:39 +0000
committersteven <steven@138bc75d-0d04-0410-961f-82ee72b054a4>2007-04-08 13:14:39 +0000
commit94be3290699b255ce64f618ea7a1acd605b32651 (patch)
tree3131cbc57239573b2da8bd670e8d0495b8a896a9 /gcc/langhooks.h
parent8e5f08fe2c0c8f7b1381e17cb6c9c9f63412525d (diff)
downloadgcc-94be3290699b255ce64f618ea7a1acd605b32651.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123658 138bc75d-0d04-0410-961f-82ee72b054a4
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 f0220fc91c3..39066959a1c 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);
};