| Index: src/x87/code-stubs-x87.cc
|
| diff --git a/src/x87/code-stubs-x87.cc b/src/x87/code-stubs-x87.cc
|
| index cab0000f2c9540835e736547331b46ced29c1d17..ccf517394eb35d321208c8cf9ffdbabe1331b0f1 100644
|
| --- a/src/x87/code-stubs-x87.cc
|
| +++ b/src/x87/code-stubs-x87.cc
|
| @@ -4090,7 +4090,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);
|
| }
|
|
|
| @@ -4294,7 +4294,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);
|
|
|