| Index: runtime/vm/intermediate_language.cc
|
| diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
|
| index b03a8f638bc6cc2d6e93fee4bfc4cb5647aa5ac1..df48532d6d237923be7993ebc83cc801b11a3d7f 100644
|
| --- a/runtime/vm/intermediate_language.cc
|
| +++ b/runtime/vm/intermediate_language.cc
|
| @@ -3206,15 +3206,15 @@ void MaterializeObjectInstr::RemapRegisters(intptr_t* cpu_reg_slots,
|
| }
|
|
|
|
|
| -LocationSummary* CurrentContextInstr::MakeLocationSummary(Zone* zone,
|
| - bool opt) const {
|
| +LocationSummary* SpecialParameterInstr::MakeLocationSummary(Zone* zone,
|
| + bool opt) const {
|
| // Only appears in initial definitions, never in normal code.
|
| UNREACHABLE();
|
| return NULL;
|
| }
|
|
|
|
|
| -void CurrentContextInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| +void SpecialParameterInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| // Only appears in initial definitions, never in normal code.
|
| UNREACHABLE();
|
| }
|
|
|