| Index: src/ia32/code-stubs-ia32.cc
|
| diff --git a/src/ia32/code-stubs-ia32.cc b/src/ia32/code-stubs-ia32.cc
|
| index 91958652725464678ed0a5b82731a9b162721a4a..06ae122c5aae16184004bba139ae06b5e0e8a085 100644
|
| --- a/src/ia32/code-stubs-ia32.cc
|
| +++ b/src/ia32/code-stubs-ia32.cc
|
| @@ -4428,7 +4428,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);
|
| }
|
|
|
| @@ -4632,7 +4632,7 @@ void KeyedLoadICStub::GenerateImpl(MacroAssembler* masm, bool in_frame) {
|
| __ CompareRoot(feedback, Heap::kmegamorphic_symbolRootIndex);
|
| __ j(not_equal, &try_poly_name);
|
| Handle<Code> megamorphic_stub =
|
| - KeyedLoadIC::ChooseMegamorphicStub(masm->isolate());
|
| + KeyedLoadIC::ChooseMegamorphicStub(masm->isolate(), GetExtraICState());
|
| __ jmp(megamorphic_stub, RelocInfo::CODE_TARGET);
|
|
|
| __ bind(&try_poly_name);
|
|
|