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()); |
} |