Commit c70e8329 authored by verwaest@chromium.org's avatar verwaest@chromium.org

Fix popping order on ARM.

R=dcarney@chromium.org

Review URL: https://chromiumcodereview.appspot.com/99353003

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18291 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 75a84eca
...@@ -1093,9 +1093,9 @@ class CallInterceptorCompiler BASE_EMBEDDED { ...@@ -1093,9 +1093,9 @@ class CallInterceptorCompiler BASE_EMBEDDED {
CompileCallLoadPropertyWithInterceptor( CompileCallLoadPropertyWithInterceptor(
masm, receiver, holder, name_, holder_obj, masm, receiver, holder, name_, holder_obj,
IC::kLoadPropertyWithInterceptorOnly); IC::kLoadPropertyWithInterceptorOnly);
__ pop(receiver);
__ pop(name_); __ pop(name_);
__ pop(holder); __ pop(holder);
__ pop(receiver);
} }
// If interceptor returns no-result sentinel, call the constant function. // If interceptor returns no-result sentinel, call the constant function.
__ LoadRoot(scratch, Heap::kNoInterceptorResultSentinelRootIndex); __ LoadRoot(scratch, Heap::kNoInterceptorResultSentinelRootIndex);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment