Commit b6b27e98 by Jakub Jelinek Committed by Jakub Jelinek

tree.c (copy_node_stat): Clear DECL_STRUCT_FUNCTION.

	* tree.c (copy_node_stat): Clear DECL_STRUCT_FUNCTION.
fortran/
	* trans-decl.c (trans_function_start, generate_coarray_init,
	create_main_function, gfc_generate_constructors): Call
	allocate_struct_function instead of init_function_start.

From-SVN: r190619
parent 8597cab1
2012-08-23 Jakub Jelinek <jakub@redhat.com>
* tree.c (copy_node_stat): Clear DECL_STRUCT_FUNCTION.
2012-08-23 Mingjie Xing <mingjie.xing@gmail.com> 2012-08-23 Mingjie Xing <mingjie.xing@gmail.com>
* doc/gty.texi: Fix typo. * doc/gty.texi: Fix typo.
......
2012-08-23 Jakub Jelinek <jakub@redhat.com>
* trans-decl.c (trans_function_start, generate_coarray_init,
create_main_function, gfc_generate_constructors): Call
allocate_struct_function instead of init_function_start.
2012-08-22 Tobias Burnus <burnus@net-b.de> 2012-08-22 Tobias Burnus <burnus@net-b.de>
* trans-expr.c (gfc_copy_class_to_class, * trans-expr.c (gfc_copy_class_to_class,
......
...@@ -2265,7 +2265,7 @@ trans_function_start (gfc_symbol * sym) ...@@ -2265,7 +2265,7 @@ trans_function_start (gfc_symbol * sym)
/* Create RTL for function definition. */ /* Create RTL for function definition. */
make_decl_rtl (fndecl); make_decl_rtl (fndecl);
init_function_start (fndecl); allocate_struct_function (fndecl, false);
/* function.c requires a push at the start of the function. */ /* function.c requires a push at the start of the function. */
pushlevel (); pushlevel ();
...@@ -4408,7 +4408,7 @@ generate_coarray_init (gfc_namespace * ns __attribute((unused))) ...@@ -4408,7 +4408,7 @@ generate_coarray_init (gfc_namespace * ns __attribute((unused)))
rest_of_decl_compilation (fndecl, 0, 0); rest_of_decl_compilation (fndecl, 0, 0);
make_decl_rtl (fndecl); make_decl_rtl (fndecl);
init_function_start (fndecl); allocate_struct_function (fndecl, false);
pushlevel (); pushlevel ();
gfc_init_block (&caf_init_block); gfc_init_block (&caf_init_block);
...@@ -4982,7 +4982,7 @@ create_main_function (tree fndecl) ...@@ -4982,7 +4982,7 @@ create_main_function (tree fndecl)
rest_of_decl_compilation (ftn_main, 1, 0); rest_of_decl_compilation (ftn_main, 1, 0);
make_decl_rtl (ftn_main); make_decl_rtl (ftn_main);
init_function_start (ftn_main); allocate_struct_function (ftn_main, false);
pushlevel (); pushlevel ();
gfc_init_block (&body); gfc_init_block (&body);
...@@ -5537,7 +5537,7 @@ gfc_generate_constructors (void) ...@@ -5537,7 +5537,7 @@ gfc_generate_constructors (void)
make_decl_rtl (fndecl); make_decl_rtl (fndecl);
init_function_start (fndecl); allocate_struct_function (fndecl, false);
pushlevel (); pushlevel ();
......
...@@ -983,6 +983,8 @@ copy_node_stat (tree node MEM_STAT_DECL) ...@@ -983,6 +983,8 @@ copy_node_stat (tree node MEM_STAT_DECL)
SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node)); SET_DECL_INIT_PRIORITY (t, DECL_INIT_PRIORITY (node));
DECL_HAS_INIT_PRIORITY_P (t) = 1; DECL_HAS_INIT_PRIORITY_P (t) = 1;
} }
if (TREE_CODE (node) == FUNCTION_DECL)
DECL_STRUCT_FUNCTION (t) = NULL;
} }
else if (TREE_CODE_CLASS (code) == tcc_type) else if (TREE_CODE_CLASS (code) == tcc_type)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment