]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Replace has_analyzed_clone with has_analyzed_clone_p.
authorH.J. Lu <hongjiu.lu@intel.com>
Fri, 20 Aug 2010 14:42:28 +0000 (14:42 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Fri, 20 Aug 2010 14:42:28 +0000 (07:42 -0700)
2010-08-20  H.J. Lu  <hongjiu.lu@intel.com>

PR bootstrap/45357
* lto.c (lto_materialize_function): Replace has_analyzed_clone
with has_analyzed_clone_p.

From-SVN: r163405

gcc/lto/ChangeLog
gcc/lto/lto.c

index cc337201d8e355073698c4eb9702474c9e4ac50f..daaae9aa0e54fe2df343c83bb5f2c8892d05dd9b 100644 (file)
@@ -1,3 +1,9 @@
+2010-08-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR bootstrap/45357
+       * lto.c (lto_materialize_function): Replace has_analyzed_clone
+       with has_analyzed_clone_p.
+
 2010-08-20  Jan Hubicka  <jh@suse.cz>
 
        * lto.c (has_analyzed_clone_p): New function
index 28885ce0356d934a331c066474c82500570c15d1..a9c5dd399e25d008909819d6bad2505c7815ce4c 100644 (file)
@@ -158,7 +158,7 @@ lto_materialize_function (struct cgraph_node *node)
   decl = node->decl;
   /* Read in functions with body (analyzed nodes)
      and also functions that are needed to produce virtual clones.  */
-  if (node->analyzed || has_analyzed_clone (node))
+  if (node->analyzed || has_analyzed_clone_p (node))
     {
       /* This function has a definition.  */
       TREE_STATIC (decl) = 1;