Index: src/mips/code-stubs-mips.cc |
diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc |
index 1b84534d626fec2fb855d81205c9b0e0ab1d43be..aefc44879f472a245bf446ccad05efabc6b802bd 100644 |
--- a/src/mips/code-stubs-mips.cc |
+++ b/src/mips/code-stubs-mips.cc |
@@ -4592,7 +4592,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); |
} |
@@ -4805,7 +4805,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); |