diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-29 00:34:09 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-29 00:34:09 +0000 |
commit | 4e8871a04f4928e8a6d833c78b060e20af6b4e12 (patch) | |
tree | 66950d896c4e79e9db825a8c670c14a160a7f554 /gcc/cgraphunit.c | |
parent | a0e2666d3dddd50253c1384c234f5815ca62aa88 (diff) | |
download | gcc-4e8871a04f4928e8a6d833c78b060e20af6b4e12.tar.gz |
PR c++/12850
* cgraph.c (cgraph_remove_node): Clear out saved/insns/arguments and
initial pointers.
* cgraphunit.c (cgraph_finalize_function): Clear out DECL_SAVED_INSNS
for functions that will be only inlined.
(cgraph_mark_function_to_output): Likewise.
(cgraph_expand_function): Sanity check that DECL_DEFER_OUTPUT is clear;
do not clear function body.
* tree-optimize.c (clear_decl_rtl): Use decl_function_context.
(tree_rest_of_compilation): Reorganize the logic releasing function
body to use callgraph datastructure.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76822 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 3a7dcb3a4dc..f68bd2a34df 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -228,6 +228,11 @@ cgraph_finalize_function (tree decl, bool nested) /* If we've not yet emitted decl, tell the debug info about it. */ if (!TREE_ASM_WRITTEN (decl)) (*debug_hooks->deferred_inline_function) (decl); + + /* We will never really output the function body, clear the SAVED_INSNS array + early then. */ + if (DECL_EXTERNAL (decl)) + DECL_SAVED_INSNS (decl) = NULL; } /* Walk tree and record all calls. Called via walk_tree. */ @@ -476,6 +481,8 @@ cgraph_mark_functions_to_output (void) && !TREE_ASM_WRITTEN (decl) && !node->origin && !DECL_EXTERNAL (decl)) node->output = 1; + else + DECL_SAVED_INSNS (decl) = NULL; } } @@ -525,9 +532,9 @@ cgraph_expand_function (struct cgraph_node *node) /* Generate RTL for the body of DECL. Nested functions are expanded via lang_expand_decl_stmt. */ (*lang_hooks.callgraph.expand_function) (decl); + if (DECL_DEFER_OUTPUT (decl)) + abort (); - if (!cgraph_function_possibly_inlined_p (decl)) - DECL_SAVED_TREE (decl) = NULL; current_function_decl = NULL; } |