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-Tag: basepoints/gcc-14~5647 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9de8fbe1507d8c6e7c9657657a3c05337b8fde23;p=thirdparty%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 6c21415bf65..01ad353e3a9 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)