diff options
author | Steven Bosscher <stevenb@suse.de> | 2004-02-17 21:33:43 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-02-17 21:33:43 +0000 |
commit | 1da326c33559e8a114bc379ec7c8f805dd37aef6 (patch) | |
tree | 58f53ff8b90ef0d35498ee8d08bb3febee99cd2b /gcc/tree.h | |
parent | 65c0764148b74f9dda9348242e6ddf6b7733278b (diff) | |
download | gcc-1da326c33559e8a114bc379ec7c8f805dd37aef6.zip gcc-1da326c33559e8a114bc379ec7c8f805dd37aef6.tar.gz gcc-1da326c33559e8a114bc379ec7c8f805dd37aef6.tar.bz2 |
(c-decl.c, [...]): Replace DECL_SAVED_INSNS with DECL_STRUCT_FUNCTION.
* (c-decl.c, c-semantics.c, calls.c, cgraph.c, cgraphunit.c,
function.c, integrate.c, print-tree.c, toplev.c, tree-optimize.c,
tree.h): Replace DECL_SAVED_INSNS with DECL_STRUCT_FUNCTION.
* ada/utils.c: Likewise.
* cp/decl.c: Likewise.
* f/com.c: Likewise.
* java/class.c: Likewise.
From-SVN: r77985
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1375,8 +1375,9 @@ struct tree_type GTY(()) where the data was actually passed. */ #define DECL_INCOMING_RTL(NODE) (PARM_DECL_CHECK (NODE)->decl.u2.r) -/* For FUNCTION_DECL, if it is inline, holds the saved insn chain. */ -#define DECL_SAVED_INSNS(NODE) (FUNCTION_DECL_CHECK (NODE)->decl.u2.f) +/* For FUNCTION_DECL, this holds a pointer to a structure ("struct function") + that describes the status of this function. */ +#define DECL_STRUCT_FUNCTION(NODE) (FUNCTION_DECL_CHECK (NODE)->decl.u2.f) /* For FUNCTION_DECL, if it is built-in, this identifies which built-in operation it is. */ |