diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2004-12-23 02:50:24 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2004-12-23 02:50:24 +0000 |
commit | b9cd7e9d86a51abc1bcf2bc7eea436994c6b66be (patch) | |
tree | 64c3100c41bb0f33c672ea021bce73eb31de069f /gcc/tree.h | |
parent | f65b7de376c7284b60167d8400ddbcfddff58db6 (diff) | |
download | gcc-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.h | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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. */ |