cgraph.c (cgraph_node::function_symbol): Fix wrong cgraph_function_node to cgraph_node::function_symbol refactoring.

gcc/
	* cgraph.c (cgraph_node::function_symbol): Fix wrong
	cgraph_function_node to cgraph_node::function_symbol
	refactoring.

From-SVN: r213946
This commit is contained in:
Ilya Enkovich 2014-08-14 08:45:45 +00:00 committed by Kirill Yukhin
parent 4d2df0f470
commit 1113596f06
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2014-08-14 Ilya Enkovich <ilya.enkovich@intel.com>
* cgraph.c (cgraph_node::function_symbol): Fix wrong
cgraph_function_node to cgraph_node::function_symbol
refactoring.
2014-08-14 Zhenqiang Chen <zhenqiang.chen@arm.com>
* config/arm/arm.c (arm_option_override): Set max_insns_skipped

View File

@ -3000,11 +3000,11 @@ cgraph_node::verify_cgraph_nodes (void)
cgraph_node *
cgraph_node::function_symbol (enum availability *availability)
{
cgraph_node *node = NULL;
cgraph_node *node = this;
do
{
node = ultimate_alias_target (availability);
node = node->ultimate_alias_target (availability);
if (node->thunk.thunk_p)
{
node = node->callees->callee;