From: H.J. Lu Date: Mon, 14 May 2007 23:16:45 +0000 (+0000) Subject: 2007-05-14 H.J. Lu X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=74bad5d4d8e777574d5957c790c6b0e669d0a5fe;p=binutils-gdb.git 2007-05-14 H.J. Lu * hist.c (scale_and_align_entries): Avoid C99 feature. --- diff --git a/gprof/ChangeLog b/gprof/ChangeLog index bca9591913d..7ddbf701fd8 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,7 @@ +2007-05-14 H.J. Lu + + * hist.c (scale_and_align_entries): Avoid C99 feature. + 2007-04-19 Alan Modra * corefile.c (core_create_function_syms, core_create_line_syms): Don't diff --git a/gprof/hist.c b/gprof/hist.c index 6c48223a444..9c7f446a6d4 100644 --- a/gprof/hist.c +++ b/gprof/hist.c @@ -296,10 +296,10 @@ scale_and_align_entries () for (sym = symtab.base; sym < symtab.limit; sym++) { - sym->hist.scaled_addr = sym->addr / sizeof (UNIT); - histogram *r = find_histogram_for_pc (sym->addr); + sym->hist.scaled_addr = sym->addr / sizeof (UNIT); + if (r) { bin_of_entry = (sym->hist.scaled_addr - r->lowpc) / hist_scale;