Revision: 18292
Author:   [email protected]
Date:     Tue Dec 10 22:43:15 2013 UTC
Log: Push receiver and holder separately, given that they can be the same.

[email protected]

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

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

=======================================
--- /branches/bleeding_edge/src/arm/stub-cache-arm.cc Tue Dec 10 16:28:58 2013 UTC +++ /branches/bleeding_edge/src/arm/stub-cache-arm.cc Tue Dec 10 22:43:15 2013 UTC
@@ -1089,7 +1089,8 @@
                            Label* interceptor_succeeded) {
     {
       FrameScope scope(masm, StackFrame::INTERNAL);
-      __ Push(receiver, holder, name_);
+      __ Push(receiver);
+      __ Push(holder, name_);
       CompileCallLoadPropertyWithInterceptor(
           masm, receiver, holder, name_, holder_obj,
           IC::kLoadPropertyWithInterceptorOnly);

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