trans-decl.c (gfc_generate_function_code): Call cgraph_create_node instead of cgraph_...
authorMartin Jambor <mjambor@suse.cz>
Tue, 19 Apr 2011 16:08:50 +0000 (18:08 +0200)
committerMartin Jambor <jamborm@gcc.gnu.org>
Tue, 19 Apr 2011 16:08:50 +0000 (18:08 +0200)
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

gcc/fortran/ChangeLog
gcc/fortran/trans-decl.c

index f6e7d47..94ee71c 100644 (file)
@@ -1,3 +1,8 @@
+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
index 2901046..f80c9db 100644 (file)
@@ -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);