| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 19765)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -380,14 +380,13 @@
|
|
|
|
|
| void LoadLocalInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| - f->Print("%s lvl:%"Pd"", local().name().ToCString(), context_level());
|
| + f->Print("%s", local().name().ToCString());
|
| }
|
|
|
|
|
| void StoreLocalInstr::PrintOperandsTo(BufferFormatter* f) const {
|
| f->Print("%s, ", local().name().ToCString());
|
| value()->PrintTo(f);
|
| - f->Print(", lvl: %"Pd"", context_level());
|
| }
|
|
|
|
|
|
|