Index: src/mips64/code-stubs-mips64.cc |
diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc |
index 3baf78ea24e2a46033dbf1d6cf3d7ea5e9f1053a..8c539b40f829d3a9d564b38e3c47b5029d675082 100644 |
--- a/src/mips64/code-stubs-mips64.cc |
+++ b/src/mips64/code-stubs-mips64.cc |
@@ -4636,7 +4636,7 @@ void LoadICTrampolineStub::Generate(MacroAssembler* masm) { |
void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) { |
EmitLoadTypeFeedbackVector(masm, LoadWithVectorDescriptor::VectorRegister()); |
- KeyedLoadICStub stub(isolate(), state()); |
+ KeyedLoadICStub stub(isolate()); |
stub.GenerateForTrampoline(masm); |
} |
@@ -4847,7 +4847,7 @@ void KeyedLoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) { |
__ LoadRoot(at, Heap::kmegamorphic_symbolRootIndex); |
__ Branch(&try_poly_name, ne, feedback, Operand(at)); |
Handle<Code> megamorphic_stub = |
- KeyedLoadIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState()); |
+ KeyedLoadIC::ChooseMegamorphicStub(masm->isolate()); |
__ Jump(megamorphic_stub, RelocInfo::CODE_TARGET); |
__ bind(&try_poly_name); |