aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2004-12-23 02:50:24 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2004-12-23 02:50:24 +0000
commitb9cd7e9d86a51abc1bcf2bc7eea436994c6b66be (patch)
tree64c3100c41bb0f33c672ea021bce73eb31de069f /gcc/tree.h
parentf65b7de376c7284b60167d8400ddbcfddff58db6 (diff)
downloadgcc-b9cd7e9d86a51abc1bcf2bc7eea436994c6b66be.zip
gcc-b9cd7e9d86a51abc1bcf2bc7eea436994c6b66be.tar.gz
gcc-b9cd7e9d86a51abc1bcf2bc7eea436994c6b66be.tar.bz2
tree-inline.c (struct inline_data): Remove inlined_fns.
2004-12-22 Daniel Berlin <dberlin@dberlin.org> * tree-inline.c (struct inline_data): Remove inlined_fns. (expand_call_inline): Remove dead code setting inlined_fns. (optimize_inline_calls): Remove dead code setting DECL_INLINED_FNS. * tree.h (struct tree_decl): Remove inlined_fns. From-SVN: r92529
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 273691d..644dff9 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -2148,9 +2148,6 @@ struct tree_binfo GTY (())
#define DECL_VALUE_EXPR(NODE) \
(TREE_CHECK2 (NODE, VAR_DECL, PARM_DECL)->decl.saved_tree)
-/* List of FUNCTION_DECLs inlined into this function's body. */
-#define DECL_INLINED_FNS(NODE) (FUNCTION_DECL_CHECK (NODE)->decl.inlined_fns)
-
/* Nonzero in a FUNCTION_DECL means this function should be treated
as if it were a malloc, meaning it returns a pointer that is
not an alias. */
@@ -2400,11 +2397,6 @@ struct tree_decl GTY(())
/* In a FUNCTION_DECL, this is DECL_SAVED_TREE.
In a VAR_DECL or PARM_DECL, this is DECL_VALUE_EXPR. */
tree saved_tree;
-
- /* In a FUNCTION_DECL, these are function data which is to be kept
- as long as FUNCTION_DECL is kept. */
- tree inlined_fns;
-
tree vindex;
HOST_WIDE_INT pointer_alias_set;
/* Points to a structure whose details depend on the language in use. */