From: Prathamesh Kulkarni Date: Thu, 7 Jul 2022 16:33:35 +0000 (+0530) Subject: statistics.cc: Add check to see if fn is not NULL in get_function_name. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9de8fbe1507d8c6e7c9657657a3c05337b8fde23;p=platform%2Fupstream%2Fgcc.git statistics.cc: Add check to see if fn is not NULL in get_function_name. gcc/ChangeLog: * statistics.cc (get_function_name): Add check to see if fn is not NULL. --- diff --git a/gcc/statistics.cc b/gcc/statistics.cc index 6c21415..01ad353 100644 --- a/gcc/statistics.cc +++ b/gcc/statistics.cc @@ -121,7 +121,7 @@ static const char * get_function_name (struct function *fn) { if ((statistics_dump_flags & TDF_ASMNAME) - && DECL_ASSEMBLER_NAME_SET_P (fn->decl)) + && fn && DECL_ASSEMBLER_NAME_SET_P (fn->decl)) { tree asmname = decl_assembler_name (fn->decl); if (asmname)