Commit eb229cf4 by Pat Haugen Committed by Pat Haugen

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

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

From-SVN: r172520
parent a6de01a6
2011-04-15 Pat Haugen <pthaugen@us.ibm.com>
* config/rs6000/rs6000.c (call_ABI_of_interest): Call
cgraph_get_node instead of cgraph_get_create_node.
2011-04-15 Jakub Jelinek <jakub@redhat.com> 2011-04-15 Jakub Jelinek <jakub@redhat.com>
* cfgexpand.c (expand_debug_expr): Use * cfgexpand.c (expand_debug_expr): Use
......
...@@ -7976,7 +7976,7 @@ call_ABI_of_interest (tree fndecl) ...@@ -7976,7 +7976,7 @@ call_ABI_of_interest (tree fndecl)
return true; return true;
/* Interesting functions that we are emitting in this object file. */ /* Interesting functions that we are emitting in this object file. */
c_node = cgraph_get_create_node (fndecl); c_node = cgraph_get_node (fndecl);
return !cgraph_only_called_directly_p (c_node); return !cgraph_only_called_directly_p (c_node);
} }
return false; 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