Reviewers: dcarney,

Message:
Committed patchset #1 manually as r18292.

Description:
Push receiver and holder separately, given that they can be the same.

[email protected]

Committed: https://code.google.com/p/v8/source/detail?r=18292

Please review this at https://chromiumcodereview.appspot.com/110883007/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+2, -1 lines):
  M src/arm/stub-cache-arm.cc


Index: src/arm/stub-cache-arm.cc
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
index 912ae251cebb8993d197dbf830d3b1ddfb371683..08fd2c26f1c142342ba2241d26a4de4a6f552ebf 100644
--- a/src/arm/stub-cache-arm.cc
+++ b/src/arm/stub-cache-arm.cc
@@ -1089,7 +1089,8 @@ class CallInterceptorCompiler BASE_EMBEDDED {
                            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