Chromium Code Reviews| Index: runtime/vm/il_printer.cc |
| =================================================================== |
| --- runtime/vm/il_printer.cc (revision 11464) |
| +++ runtime/vm/il_printer.cc (working copy) |
| @@ -131,7 +131,9 @@ |
| void Computation::PrintTo(BufferFormatter* f) const { |
| - f->Print("%s:%d(", DebugName(), deopt_id()); |
| + // Do not access 'deopt_id()' as it asserts that the computation can |
| + // deoptimize. |
| + f->Print("%s:%d(", DebugName(), deopt_id_); |
| PrintOperandsTo(f); |
| f->Print(")"); |
| if (HasICData()) { |