Revision: 18291
Author:   [email protected]
Date:     Tue Dec 10 16:28:58 2013 UTC
Log:      Fix popping order on ARM.

[email protected]

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

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

=======================================
--- /branches/bleeding_edge/src/arm/stub-cache-arm.cc Tue Dec 10 14:36:10 2013 UTC +++ /branches/bleeding_edge/src/arm/stub-cache-arm.cc Tue Dec 10 16:28:58 2013 UTC
@@ -1093,9 +1093,9 @@
       CompileCallLoadPropertyWithInterceptor(
           masm, receiver, holder, name_, holder_obj,
           IC::kLoadPropertyWithInterceptorOnly);
-      __ pop(receiver);
       __ pop(name_);
       __ pop(holder);
+      __ pop(receiver);
     }
// If interceptor returns no-result sentinel, call the constant function.
     __ LoadRoot(scratch, Heap::kNoInterceptorResultSentinelRootIndex);

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