Index: runtime/vm/il_printer.cc |
=================================================================== |
--- runtime/vm/il_printer.cc (revision 41393) |
+++ runtime/vm/il_printer.cc (working copy) |
@@ -356,7 +356,7 @@ |
void ClosureCallInstr::PrintOperandsTo(BufferFormatter* f) const { |
- f->Print("function="); |
+ f->Print(" function="); |
InputAt(0)->PrintTo(f); |
for (intptr_t i = 0; i < ArgumentCount(); ++i) { |
f->Print(", "); |
@@ -366,7 +366,7 @@ |
void InstanceCallInstr::PrintOperandsTo(BufferFormatter* f) const { |
- f->Print("%s", function_name().ToCString()); |
+ f->Print(" %s", function_name().ToCString()); |
for (intptr_t i = 0; i < ArgumentCount(); ++i) { |
f->Print(", "); |
PushArgumentAt(i)->value()->PrintTo(f); |
@@ -378,7 +378,7 @@ |
void PolymorphicInstanceCallInstr::PrintOperandsTo(BufferFormatter* f) const { |
- f->Print("%s", instance_call()->function_name().ToCString()); |
+ f->Print(" %s", instance_call()->function_name().ToCString()); |
for (intptr_t i = 0; i < ArgumentCount(); ++i) { |
f->Print(", "); |
PushArgumentAt(i)->value()->PrintTo(f); |
@@ -417,7 +417,7 @@ |
void StaticCallInstr::PrintOperandsTo(BufferFormatter* f) const { |
- f->Print("%s ", String::Handle(function().name()).ToCString()); |
+ f->Print(" %s ", String::Handle(function().name()).ToCString()); |
for (intptr_t i = 0; i < ArgumentCount(); ++i) { |
if (i > 0) f->Print(", "); |
PushArgumentAt(i)->value()->PrintTo(f); |