| Index: runtime/vm/il_printer.cc | 
| =================================================================== | 
| --- runtime/vm/il_printer.cc	(revision 33072) | 
| +++ runtime/vm/il_printer.cc	(working copy) | 
| @@ -311,6 +311,12 @@ | 
| } | 
|  | 
|  | 
| +void DropTempsInstr::PrintOperandsTo(BufferFormatter* f) const { | 
| +  f->Print("%" Pd ", ", num_temps()); | 
| +  value()->PrintTo(f); | 
| +} | 
| + | 
| + | 
| void AssertAssignableInstr::PrintOperandsTo(BufferFormatter* f) const { | 
| value()->PrintTo(f); | 
| f->Print(", %s, '%s'", | 
| @@ -503,15 +509,6 @@ | 
| } | 
|  | 
|  | 
| -void CreateClosureInstr::PrintOperandsTo(BufferFormatter* f) const { | 
| -  f->Print("%s", function().ToCString()); | 
| -  for (intptr_t i = 0; i < ArgumentCount(); ++i) { | 
| -    if (i > 0) f->Print(", "); | 
| -    PushArgumentAt(i)->value()->PrintTo(f); | 
| -  } | 
| -} | 
| - | 
| - | 
| void LoadFieldInstr::PrintOperandsTo(BufferFormatter* f) const { | 
| instance()->PrintTo(f); | 
| f->Print(", %" Pd, offset_in_bytes()); | 
|  |