Revision: 14608
Author:   [email protected]
Date:     Fri May 10 02:12:30 2013
Log:      Call to the right slow method.

[email protected]

Review URL: https://chromiumcodereview.appspot.com/14834009
http://code.google.com/p/v8/source/detail?r=14608

Modified:
 /branches/bleeding_edge/src/arm/ic-arm.cc
 /branches/bleeding_edge/src/x64/ic-x64.cc

=======================================
--- /branches/bleeding_edge/src/arm/ic-arm.cc   Wed May  8 08:02:08 2013
+++ /branches/bleeding_edge/src/arm/ic-arm.cc   Fri May 10 02:12:30 2013
@@ -1194,7 +1194,7 @@
// 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);
 }

=======================================
--- /branches/bleeding_edge/src/x64/ic-x64.cc   Wed May  8 08:02:08 2013
+++ /branches/bleeding_edge/src/x64/ic-x64.cc   Fri May 10 02:12:30 2013
@@ -1543,7 +1543,7 @@
   __ push(rbx);  // return address

   // Do tail-call to runtime routine.
-  ExternalReference ref(IC_Utility(kKeyedStoreIC_Slow), masm->isolate());
+  ExternalReference ref(IC_Utility(kStoreIC_Slow), masm->isolate());
   __ TailCallExternalReference(ref, 3, 1);
 }

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to