Chromium Code Reviews| Index: runtime/vm/il_printer.cc |
| =================================================================== |
| --- runtime/vm/il_printer.cc (revision 33576) |
| +++ runtime/vm/il_printer.cc (working copy) |
| @@ -312,8 +312,11 @@ |
| void DropTempsInstr::PrintOperandsTo(BufferFormatter* f) const { |
| - f->Print("%" Pd ", ", num_temps()); |
| - value()->PrintTo(f); |
| + f->Print("%" Pd "", num_temps()); |
| + if (value() != NULL) { |
| + f->Print(", "); |
| + value()->PrintTo(f); |
| + } |
| } |