From: balazs.kilvady@imgtec.com Date: Wed, 27 Aug 2014 14:22:48 +0000 (+0000) Subject: MIPS: Minor-key-ify BinaryOpICWithAllocationSiteStub. X-Git-Tag: upstream/4.7.83~7322 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14e190bb48e9116fa6f292bbb1152b9baefd28aa;p=platform%2Fupstream%2Fv8.git MIPS: Minor-key-ify BinaryOpICWithAllocationSiteStub. Port r23444 (0331267) BUG= R=dusan.milosavljevic@imgtec.com Review URL: https://codereview.chromium.org/505933003 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23461 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/mips/code-stubs-mips.cc b/src/mips/code-stubs-mips.cc index 384b0a5f..fe4f7d6 100644 --- a/src/mips/code-stubs-mips.cc +++ b/src/mips/code-stubs-mips.cc @@ -3878,7 +3878,7 @@ void BinaryOpICWithAllocationSiteStub::Generate(MacroAssembler* masm) { // Tail call into the stub that handles binary operations with allocation // sites. - BinaryOpWithAllocationSiteStub stub(isolate(), state_); + BinaryOpWithAllocationSiteStub stub(isolate(), state()); __ TailCallStub(&stub); } diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc index 2cd1e2c..3d01961 100644 --- a/src/mips64/code-stubs-mips64.cc +++ b/src/mips64/code-stubs-mips64.cc @@ -3914,7 +3914,7 @@ void BinaryOpICWithAllocationSiteStub::Generate(MacroAssembler* masm) { // Tail call into the stub that handles binary operations with allocation // sites. - BinaryOpWithAllocationSiteStub stub(isolate(), state_); + BinaryOpWithAllocationSiteStub stub(isolate(), state()); __ TailCallStub(&stub); }