Index: src/compilation-statistics.cc |
diff --git a/src/compilation-statistics.cc b/src/compilation-statistics.cc |
index c7e15b230b2fa7527c04d417b568483e068fcbe8..ed568cba3fd8650d13deecd94dc4581f1abd78ca 100644 |
--- a/src/compilation-statistics.cc |
+++ b/src/compilation-statistics.cc |
@@ -66,8 +66,9 @@ |
double size_percent = |
static_cast<double>(stats.total_allocated_bytes_ * 100) / |
static_cast<double>(total_stats.total_allocated_bytes_); |
- base::OS::SNPrintF(buffer, kBufferSize, "%28s %10.3f (%5.1f%%) %10" PRIuS |
- " (%5.1f%%) %10" PRIuS " %10" PRIuS, |
+ base::OS::SNPrintF(buffer, kBufferSize, |
+ "%28s %10.3f (%5.1f%%) " |
+ "%10u (%5.1f%%) %10u %10u", |
name, ms, percent, stats.total_allocated_bytes_, |
size_percent, stats.max_allocated_bytes_, |
stats.absolute_max_allocated_bytes_); |