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

Unified Diff: runtime/vm/locations.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/json_stream.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/locations.cc
===================================================================
--- runtime/vm/locations.cc (revision 26375)
+++ runtime/vm/locations.cc (working copy)
@@ -145,9 +145,9 @@
void Location::PrintTo(BufferFormatter* f) const {
if (kind() == kStackSlot) {
- f->Print("S%+"Pd"", stack_index());
+ f->Print("S%+" Pd "", stack_index());
} else if (kind() == kDoubleStackSlot) {
- f->Print("DS%+"Pd"", stack_index());
+ f->Print("DS%+" Pd "", stack_index());
} else {
f->Print("%s", Name());
}
@@ -156,7 +156,7 @@
void Location::Print() const {
if (kind() == kStackSlot) {
- OS::Print("S%+"Pd"", stack_index());
+ OS::Print("S%+" Pd "", stack_index());
} else {
OS::Print("%s", Name());
}
« no previous file with comments | « runtime/vm/json_stream.cc ('k') | runtime/vm/megamorphic_cache_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698