aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index 5d3e8a5..973ea84 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -239,14 +239,14 @@ struct bitmap_usage: public mem_usage
{
char *location_string = loc->to_string ();
- fprintf (stderr, "%-48s %10" PRIu64 ":%5.1f%%"
- "%10" PRIu64 "%10" PRIu64 ":%5.1f%%"
- "%12" PRIu64 "%12" PRIu64 "%10s\n",
- location_string, (uint64_t)m_allocated,
+ fprintf (stderr, "%-48s %9zu%c:%5.1f%%"
+ "%9zu%c%9zu%c:%5.1f%%"
+ "%11" PRIu64 "%c%11" PRIu64 "%c%10s\n",
+ location_string, SIZE_AMOUNT (m_allocated),
get_percent (m_allocated, total.m_allocated),
- (uint64_t)m_peak, (uint64_t)m_times,
+ SIZE_AMOUNT (m_peak), SIZE_AMOUNT (m_times),
get_percent (m_times, total.m_times),
- m_nsearches, m_search_iter,
+ SIZE_AMOUNT (m_nsearches), SIZE_AMOUNT (m_search_iter),
loc->m_ggc ? "ggc" : "heap");
free (location_string);