From c0a3d8be15f85acec18c7e19c02fafeaed0981fb Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 9 Apr 2009 13:07:34 +0000 Subject: [PATCH] * corefile.c (core_create_function_syms): Initialise a symbol's is_func field based on the setting of the BSF_FUNCTION flag. --- gprof/ChangeLog | 5 +++++ gprof/corefile.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 1f640b2967..e7fd5efac7 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,8 @@ +2009-04-09 Philippe Biondi + + * corefile.c (core_create_function_syms): Initialise a symbol's + is_func field based on the setting of the BSF_FUNCTION flag. + 2009-03-06 Nick Clifton * po/es.po: Updated Spanish translation. diff --git a/gprof/corefile.c b/gprof/corefile.c index b3433c299c..1f2575f361 100644 --- a/gprof/corefile.c +++ b/gprof/corefile.c @@ -572,7 +572,7 @@ core_create_function_syms () } } - symtab.limit->is_func = TRUE; + symtab.limit->is_func = (core_syms[i]->flags & BSF_FUNCTION) != 0; symtab.limit->is_bb_head = TRUE; if (class == 't') -- 2.11.0