Commit ed940a4a by Pat Haugen Committed by Pat Haugen

rs6000.c (call_ABI_of_interest): Call cgraph_get_create_node instead of cgraph_node.

        * config/rs6000/rs6000.c (call_ABI_of_interest): Call
        cgraph_get_create_node instead of cgraph_node.

From-SVN: r172345
parent 44720bef
2011-04-12 Pat Haugen <pthaugen@us.ibm.com>
* config/rs6000/rs6000.c (call_ABI_of_interest): Call
cgraph_get_create_node instead of cgraph_node.
2011-04-12 Nicola Pero <nicola.pero@meta-innovation.com>
* c-parser.c (c_parser_initelt): Updated call to
......
......@@ -7976,7 +7976,7 @@ call_ABI_of_interest (tree fndecl)
return true;
/* Interesting functions that we are emitting in this object file. */
c_node = cgraph_node (fndecl);
c_node = cgraph_get_create_node (fndecl);
return !cgraph_only_called_directly_p (c_node);
}
return false;
......
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