On 05/19/2011 12:39 PM, Henderson, Stuart wrote: > * config/bfin/bfin.c: Check return value of cgraph_local_info for null > before > attempting to use it.
Needs to mention the function name, and wrap the long line properly. > Index: gcc/config/bfin/bfin.c > =================================================================== > --- gcc/config/bfin/bfin.c (revision 173363) > +++ gcc/config/bfin/bfin.c (working copy) > @@ -2077,6 +2077,8 @@ Using the "-p" option for diff is preferrable. See http://gcc.gnu.org/wiki/SvnTricks > this_func = cgraph_local_info (current_function_decl); > called_func = cgraph_local_info (decl); > + if (!called_func || !this_func) > + return false; > return !called_func->local || this_func->local; > } Ok, although I think this_func should never be NULL? Bernd