Revision: 16566
Author:   [email protected]
Date:     Fri Sep  6 11:04:20 2013 UTC
Log:      Fix polymorphic INTERCEPTOR StoreICs on ARM/MIPS

BUG=chromium:284998
[email protected]

Review URL: https://codereview.chromium.org/23990004
http://code.google.com/p/v8/source/detail?r=16566

Modified:
 /branches/bleeding_edge/src/arm/stub-cache-arm.cc
 /branches/bleeding_edge/src/mips/stub-cache-mips.cc

=======================================
--- /branches/bleeding_edge/src/arm/stub-cache-arm.cc Thu Sep 5 11:18:52 2013 UTC +++ /branches/bleeding_edge/src/arm/stub-cache-arm.cc Fri Sep 6 11:04:20 2013 UTC
@@ -2872,7 +2872,7 @@
   TailCallBuiltin(masm(), MissBuiltin(kind()));

   // Return the generated code.
-  return GetICCode(kind(), Code::INTERCEPTOR, name);
+  return GetCode(kind(), Code::INTERCEPTOR, name);
 }


=======================================
--- /branches/bleeding_edge/src/mips/stub-cache-mips.cc Thu Sep 5 16:19:33 2013 UTC +++ /branches/bleeding_edge/src/mips/stub-cache-mips.cc Fri Sep 6 11:04:20 2013 UTC
@@ -2894,7 +2894,7 @@
   TailCallBuiltin(masm(), MissBuiltin(kind()));

   // Return the generated code.
-  return GetICCode(kind(), Code::INTERCEPTOR, name);
+  return GetCode(kind(), Code::INTERCEPTOR, name);
 }


--
--
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