Commit 2429bce3 by H.J. Lu Committed by H.J. Lu

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
parent e0f967db
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
......
......@@ -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;
......
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