From: Pat Haugen Date: Tue, 12 Apr 2011 20:59:41 +0000 (+0000) Subject: rs6000.c (call_ABI_of_interest): Call cgraph_get_create_node instead of cgraph_node. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed940a4ab9140594b6e42fcf74818535bec5ada7;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d07d40ed63..bc5321726a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-04-12 Pat Haugen + + * config/rs6000/rs6000.c (call_ABI_of_interest): Call + cgraph_get_create_node instead of cgraph_node. + 2011-04-12 Nicola Pero * c-parser.c (c_parser_initelt): Updated call to diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 4657ed331cd..1234cf6e212 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -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;