From b9e0b90612673cf6d9fb3aff5d1799f447273308 Mon Sep 17 00:00:00 2001 From: "akos.palfi@imgtec.com" Date: Tue, 26 Aug 2014 19:35:48 +0000 Subject: [PATCH] MIPS: Minor-key-ify new LoadICTrampolineStub. Port r23409 (31a0d5ae) BUG= R=paul.lind@imgtec.com Review URL: https://codereview.chromium.org/503393002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23423 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mips/code-stubs-mips.cc | 2 +- src/mips64/code-stubs-mips64.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); }