Prevent merge conflicts.
Change-Id: I61af7f3c9be47d4776371dfe2b97850ea3f3101f
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc
index 1ea514b..cfaa170 100644
--- a/runtime/gc/heap.cc
+++ b/runtime/gc/heap.cc
@@ -788,14 +788,14 @@
<< (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
}
uint64_t total_objects_allocated = GetObjectsAllocatedEver();
- os << "Total number of allocations: " << total_objects_allocated << "\n";
+ os << "Total number of allocations " << total_objects_allocated << "\n";
uint64_t total_bytes_allocated = GetBytesAllocatedEver();
os << "Total bytes allocated " << PrettySize(total_bytes_allocated) << "\n";
- os << "Free memory" << PrettySize(GetFreeMemoryUntilGC()) << "\n";
+ os << "Free memory " << PrettySize(GetFreeMemory()) << "\n";
os << "Free memory until GC " << PrettySize(GetFreeMemoryUntilGC()) << "\n";
os << "Free memory until OOME " << PrettySize(GetFreeMemoryUntilOOME()) << "\n";
- os << "Total memory" << PrettySize(GetTotalMemory()) << "\n";
- os << "Max memory" << PrettySize(GetMaxMemory()) << "\n";
+ os << "Total memory " << PrettySize(GetTotalMemory()) << "\n";
+ os << "Max memory " << PrettySize(GetMaxMemory()) << "\n";
if (kMeasureAllocationTime) {
os << "Total time spent allocating: " << PrettyDuration(allocation_time) << "\n";
os << "Mean allocation time: " << PrettyDuration(allocation_time / total_objects_allocated)