Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: runtime/vm/freelist.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/handles.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/freelist.cc
===================================================================
--- runtime/vm/freelist.cc (revision 26375)
+++ runtime/vm/freelist.cc (working copy)
@@ -163,7 +163,7 @@
intptr_t list_bytes = list_length * i * kObjectAlignment;
small_bytes += list_bytes;
OS::Print("small %3d [%8d bytes] : "
- "%8"Pd" objs; %8.1f KB; %8.1f cum KB\n",
+ "%8" Pd " objs; %8.1f KB; %8.1f cum KB\n",
i,
i * kObjectAlignment,
list_length,
@@ -195,8 +195,8 @@
intptr_t list_length = it->second;
intptr_t list_bytes = list_length * size;
large_bytes += list_bytes;
- OS::Print("large %3"Pd" [%8"Pd" bytes] : "
- "%8"Pd" objs; %8.1f KB; %8.1f cum KB\n",
+ OS::Print("large %3" Pd " [%8" Pd " bytes] : "
+ "%8" Pd " objs; %8.1f KB; %8.1f cum KB\n",
size / kObjectAlignment,
size,
list_length,
« no previous file with comments | « runtime/vm/flow_graph_type_propagator.cc ('k') | runtime/vm/handles.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698