aboutsummaryrefslogtreecommitdiff
path: root/gcc/cgraphunit.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2009-05-15 19:09:13 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2009-05-15 17:09:13 +0000
commitd88e5c37254630f5b3e1638aa2910bfd1e0fd030 (patch)
tree62a1c804d702494ae822b2b1cfc07dbffa19e1bf /gcc/cgraphunit.c
parent6136d2c7e2369fbd3bd63ec635ea90d723f61d66 (diff)
downloadgcc-d88e5c37254630f5b3e1638aa2910bfd1e0fd030.zip
gcc-d88e5c37254630f5b3e1638aa2910bfd1e0fd030.tar.gz
gcc-d88e5c37254630f5b3e1638aa2910bfd1e0fd030.tar.bz2
cgraph.h (struct cgraph_node): Add finalized_by_frotnend flag.
2009-05-15 Jan Hubicka <jh@suse.cz> * cgraph.h (struct cgraph_node): Add finalized_by_frotnend flag. * cgraphunit.c (cgraph_finalize_function): Set it. (cgraph_expand_function): Use it. From-SVN: r147586
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r--gcc/cgraphunit.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index a73eabc..70b2682 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -510,6 +510,7 @@ cgraph_finalize_function (tree decl, bool nested)
notice_global_symbol (decl);
node->local.finalized = true;
node->lowered = DECL_STRUCT_FUNCTION (decl)->cfg != NULL;
+ node->finalized_by_frontend = true;
record_cdtor_fn (node->decl);
if (node->nested)
lower_nested_functions (decl);
@@ -1090,7 +1091,8 @@ cgraph_expand_function (struct cgraph_node *node)
gcc_assert (node->lowered);
/* Generate RTL for the body of DECL. */
- if (lang_hooks.callgraph.emit_associated_thunks)
+ if (lang_hooks.callgraph.emit_associated_thunks
+ && node->finalized_by_frontend)
lang_hooks.callgraph.emit_associated_thunks (decl);
tree_rest_of_compilation (decl);