diff options
Diffstat (limited to 'gprof/cg_print.c')
-rw-r--r-- | gprof/cg_print.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gprof/cg_print.c b/gprof/cg_print.c index 2557997..58ff608 100644 --- a/gprof/cg_print.c +++ b/gprof/cg_print.c @@ -804,13 +804,8 @@ cg_print_function_ordering () { if (symtab.base[index].ncalls == 0) { - /* Filter out gprof generated names. */ - if (strcmp (symtab.base[index].name, "<locore>") - && strcmp (symtab.base[index].name, "<hicore>")) - { - unused_syms[unused++] = &symtab.base[index]; - symtab.base[index].has_been_placed = 1; - } + unused_syms[unused++] = &symtab.base[index]; + symtab.base[index].has_been_placed = 1; } else { |