Commit 7c589800 by Martin Jambor Committed by Martin Jambor

trans-decl.c (gfc_generate_function_code): Call cgraph_create_node instead of…

trans-decl.c (gfc_generate_function_code): Call cgraph_create_node instead of cgraph_get_create_node.

2011-04-19  Martin Jambor  <mjambor@suse.cz>

gcc/fotrean/
	* trans-decl.c (gfc_generate_function_code): Call cgraph_create_node
	instead of cgraph_get_create_node.

From-SVN: r172715
parent b8a17fa2
2011-04-19 Martin Jambor <mjambor@suse.cz>
* trans-decl.c (gfc_generate_function_code): Call cgraph_create_node
instead of cgraph_get_create_node.
2011-04-18 Jim Meyering <meyering@redhat.com>
remove now-unused definition of gfc_free
......
......@@ -5046,7 +5046,7 @@ gfc_generate_function_code (gfc_namespace * ns)
if (decl_function_context (fndecl))
/* Register this function with cgraph just far enough to get it
added to our parent's nested function list. */
(void) cgraph_get_create_node (fndecl);
(void) cgraph_create_node (fndecl);
else
cgraph_finalize_function (fndecl, true);
......
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