| Index: src/x64/code-stubs-x64.cc
|
| diff --git a/src/x64/code-stubs-x64.cc b/src/x64/code-stubs-x64.cc
|
| index cd6b050f78c4e340d8579130920cf535feb8ff35..b89438f36572f889409230ba666569109a218b0f 100644
|
| --- a/src/x64/code-stubs-x64.cc
|
| +++ b/src/x64/code-stubs-x64.cc
|
| @@ -3378,14 +3378,14 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) {
|
|
|
| void LoadICTrampolineStub::Generate(MacroAssembler* masm) {
|
| __ EmitLoadTypeFeedbackVector(LoadWithVectorDescriptor::VectorRegister());
|
| - LoadICStub stub(isolate(), state());
|
| + LoadICStub stub(isolate());
|
| stub.GenerateForTrampoline(masm);
|
| }
|
|
|
|
|
| void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) {
|
| __ EmitLoadTypeFeedbackVector(LoadWithVectorDescriptor::VectorRegister());
|
| - KeyedLoadICStub stub(isolate(), state());
|
| + KeyedLoadICStub stub(isolate());
|
| stub.GenerateForTrampoline(masm);
|
| }
|
|
|
|
|