diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc index bf6773f4a5..384b0a5fec 100644 --- a/src/mips/code-stubs-mips.cc +++ b/src/mips/code-stubs-mips.cc @@ -4799,7 +4799,7 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) { void LoadICTrampolineStub::Generate(MacroAssembler* masm) { EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); - VectorLoadStub stub(isolate(), state_); + VectorLoadStub stub(isolate(), state()); __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); } diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc index 0fd169b3d9..2cd1e2c213 100644 --- a/src/mips64/code-stubs-mips64.cc +++ b/src/mips64/code-stubs-mips64.cc @@ -4836,7 +4836,7 @@ void StubFailureTrampolineStub::Generate(MacroAssembler* masm) { void LoadICTrampolineStub::Generate(MacroAssembler* masm) { EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); - VectorLoadStub stub(isolate(), state_); + VectorLoadStub stub(isolate(), state()); __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); }