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