Replace has_analyzed_clone with has_analyzed_clone_p.

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
This commit is contained in:
H.J. Lu 2010-08-20 14:42:28 +00:00 committed by H.J. Lu
parent e0f967db8d
commit 2429bce332
2 changed files with 7 additions and 1 deletions

View 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

View 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;