| Index: runtime/vm/intermediate_language.cc
|
| diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
|
| index 9db5af0f6200ebc24587140cb70c0304e61607cc..710f88bcca62d293f02514e549357a2b82bba389 100644
|
| --- a/runtime/vm/intermediate_language.cc
|
| +++ b/runtime/vm/intermediate_language.cc
|
| @@ -3240,15 +3240,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();
|
| }
|
|
|