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/f | |
parent | 65c0764148b74f9dda9348242e6ddf6b7733278b (diff) | |
download | gcc-1da326c33559e8a114bc379ec7c8f805dd37aef6.tar.gz |
(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/f')
-rw-r--r-- | gcc/f/com.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/f/com.c b/gcc/f/com.c index 5309b84f4d2..ebfce0a5670 100644 --- a/gcc/f/com.c +++ b/gcc/f/com.c @@ -13402,7 +13402,7 @@ duplicate_decls (tree newdecl, tree olddecl) DECL_RESULT (newdecl) = DECL_RESULT (olddecl); DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl); - DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl); + DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl); DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl); } @@ -13599,7 +13599,7 @@ finish_function (int nested) if (TREE_CODE (fndecl) != ERROR_MARK && !nested - && DECL_SAVED_INSNS (fndecl) == 0) + && DECL_STRUCT_FUNCTION (fndecl) == 0) { /* Stop pointing to the local nodes about to be freed. */ /* But DECL_INITIAL must remain nonzero so we know this was an actual @@ -13755,7 +13755,7 @@ pop_f_function_context (void) = TREE_VALUE (link); if (current_function_decl != error_mark_node - && DECL_SAVED_INSNS (current_function_decl) == 0) + && DECL_STRUCT_FUNCTION (current_function_decl) == 0) { /* Stop pointing to the local nodes about to be freed. */ /* But DECL_INITIAL must remain nonzero so we know this was an actual @@ -14350,7 +14350,7 @@ poplevel (int keep, int reverse, int functionbody) if (DECL_ABSTRACT_ORIGIN (decl) != 0 && DECL_ABSTRACT_ORIGIN (decl) != decl) TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1; - else if (DECL_SAVED_INSNS (decl) != 0) + else if (DECL_STRUCT_FUNCTION (decl) != 0) { push_function_context (); output_inline_function (decl); |