Chromium Code Reviews| Index: runtime/vm/il_printer.cc |
| =================================================================== |
| --- runtime/vm/il_printer.cc (revision 35546) |
| +++ runtime/vm/il_printer.cc (working copy) |
| @@ -355,8 +355,10 @@ |
| void ClosureCallInstr::PrintOperandsTo(BufferFormatter* f) const { |
| + f->Print("function="); |
| + InputAt(0)->PrintTo(f); |
| for (intptr_t i = 0; i < ArgumentCount(); ++i) { |
| - if (i > 0) f->Print(", "); |
| + f->Print(", "); |
| PushArgumentAt(i)->value()->PrintTo(f); |
| } |
| } |