aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-nested.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2004-09-20 22:38:29 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2004-09-20 20:38:29 +0000
commit8f2353433c31121e5ec31f24d70b80c385fb28ff (patch)
tree25c6e4482c10189121acfa2bf0f54130a9876b63 /gcc/tree-nested.c
parent04161e2bde5dee7dbe9c7863f3cb6f262c8d059c (diff)
downloadgcc-8f2353433c31121e5ec31f24d70b80c385fb28ff.zip
gcc-8f2353433c31121e5ec31f24d70b80c385fb28ff.tar.gz
gcc-8f2353433c31121e5ec31f24d70b80c385fb28ff.tar.bz2
re PR middle-end/16460 (ICE when compiling glibc (ld-ctype.c))
PR middle-end/16460 * cgraph.c (cgraph_unnest_node): New function. (c_finalize): Rename to .... (c_warn_unused_result_recursivly): ... this one; do only the warning (finish_function): Finalize the toplevel function; do not lower nested tree. * cgraph.h (cgraph_unnest_node): Declare. * cgraphunit.c (decide_is_function_needed): Do not use cgraph nestedness datastructure. * cse.c (cse_insn): Do not cprop nonlocal LABEL_REFs. * reload1.c (set_label_offsets): Fix call of set_label_offsets. * tree-nested.c (finlize_nesting_tree_1): Use un-nesting code. * utils.c (gnat_finalize): Remove. (end_subprog_body): Directly call cgraph_finalize_function; do not lower the nested functions. * trans-decl.c (build_entry_thunks): Finalize the function; do not lower tree. (gfc_generate_function_code): Likewise. From-SVN: r87770
Diffstat (limited to 'gcc/tree-nested.c')
-rw-r--r--gcc/tree-nested.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c
index 135ac04..d2608a8 100644
--- a/gcc/tree-nested.c
+++ b/gcc/tree-nested.c
@@ -1207,6 +1207,7 @@ finalize_nesting_tree_1 (struct nesting_info *root)
tree stmt_list = NULL;
tree context = root->context;
struct function *sf;
+ struct cgraph_node *node;
/* If we created a non-local frame type or decl, we need to lay them
out at this time. */
@@ -1317,6 +1318,15 @@ finalize_nesting_tree_1 (struct nesting_info *root)
/* Dump the translated tree function. */
dump_function (TDI_nested, root->context);
+ node = cgraph_node (root->context);
+
+ /* For nested functions update the cgraph to reflect unnesting.
+ We also delay finalizing of these functions up to this point. */
+ if (node->origin)
+ {
+ cgraph_unnest_node (cgraph_node (root->context));
+ cgraph_finalize_function (root->context, true);
+ }
}
static void