From 4e1acaa6749ed1da6cdc2bfd77e169a02bdabc64 Mon Sep 17 00:00:00 2001 From: "palfia@homejinni.com" Date: Fri, 10 May 2013 22:47:49 +0000 Subject: [PATCH] MIPS: Call to the right slow method. Port r14608 (339e0877) BUG= Review URL: https://codereview.chromium.org/14980008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14627 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/mips/ic-mips.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mips/ic-mips.cc b/src/mips/ic-mips.cc index 02055a4..8b2b325 100644 --- a/src/mips/ic-mips.cc +++ b/src/mips/ic-mips.cc @@ -1454,7 +1454,7 @@ void StoreIC::GenerateSlow(MacroAssembler* masm) { // The slow case calls into the runtime to complete the store without causing // an IC miss that would otherwise cause a transition to the generic stub. ExternalReference ref = - ExternalReference(IC_Utility(kKeyedStoreIC_Slow), masm->isolate()); + ExternalReference(IC_Utility(kStoreIC_Slow), masm->isolate()); __ TailCallExternalReference(ref, 3, 1); } -- 2.7.4