2007-05-14 H.J. Lu <hongjiu.lu@intel.com>

* hist.c (scale_and_align_entries): Avoid C99 feature.
This commit is contained in:
H.J. Lu 2007-05-14 23:16:45 +00:00
parent f5ce4941f0
commit 74bad5d4d8
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-05-14 H.J. Lu <hongjiu.lu@intel.com>
* hist.c (scale_and_align_entries): Avoid C99 feature.
2007-04-19 Alan Modra <amodra@bigpond.net.au>
* corefile.c (core_create_function_syms, core_create_line_syms): Don't

View File

@ -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;