| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 10606)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -178,6 +178,12 @@
|
| }
|
|
|
|
|
| +void AssertBooleanComp::PrintOperandsTo(BufferFormatter* f) const {
|
| + value()->PrintTo(f);
|
| + f->Print("%s", IsEliminated() ? " eliminated" : "");
|
| +}
|
| +
|
| +
|
| void ClosureCallComp::PrintOperandsTo(BufferFormatter* f) const {
|
| for (intptr_t i = 0; i < ArgumentCount(); ++i) {
|
| if (i > 0) f->Print(", ");
|
|
|