Commit 62ecfeb8 by Martin Jambor Committed by Martin Jambor

cgraphunit.c (verify_cgraph_node): Call cgraph_get_node instead of cgraph_node.

2011-03-11  Martin Jambor  <mjambor@suse.cz>

	* cgraphunit.c (verify_cgraph_node): Call cgraph_get_node instead of
	cgraph_node.

From-SVN: r170870
parent dcb9e2c1
2011-03-11 Martin Jambor <mjambor@suse.cz>
* cgraphunit.c (verify_cgraph_node): Call cgraph_get_node instead of
cgraph_node.
2011-03-11 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/48063
......
......@@ -551,7 +551,7 @@ verify_cgraph_node (struct cgraph_node *node)
error_found = true;
}
if (!cgraph_node (node->decl))
if (!cgraph_get_node (node->decl))
{
error ("node not found in cgraph_hash");
error_found = true;
......
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