OSDN Git Service

* config/rs6000/rs6000.c (call_ABI_of_interest): Call
authorpthaugen <pthaugen@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Apr 2011 20:59:41 +0000 (20:59 +0000)
committerpthaugen <pthaugen@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 12 Apr 2011 20:59:41 +0000 (20:59 +0000)
        cgraph_get_create_node instead of cgraph_node.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172345 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.c

index 6d07d40..bc53217 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-12  Pat Haugen <pthaugen@us.ibm.com>
+
+       * config/rs6000/rs6000.c (call_ABI_of_interest): Call
+       cgraph_get_create_node instead of cgraph_node.
+
 2011-04-12  Nicola Pero  <nicola.pero@meta-innovation.com>
 
        * c-parser.c (c_parser_initelt): Updated call to
index 4657ed3..1234cf6 100644 (file)
@@ -7976,7 +7976,7 @@ call_ABI_of_interest (tree fndecl)
        return true;
 
       /* Interesting functions that we are emitting in this object file.  */
-      c_node = cgraph_node (fndecl);
+      c_node = cgraph_get_create_node (fndecl);
       return !cgraph_only_called_directly_p (c_node);
     }
   return false;