Tentative fix for overly clever Mac compiler.

TBR=danno@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11736 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 40dbd13e
......@@ -2881,8 +2881,9 @@ Handle<Code> LoadStubCompiler::CompileLoadViaGetter(
// Call the JavaScript getter with the receiver on the stack.
__ push(edx);
__ InvokeFunction(getter, ParameterCount(0), CALL_FUNCTION,
NullCallWrapper(), CALL_AS_METHOD);
ParameterCount actual(0);
__ InvokeFunction(getter, actual, CALL_FUNCTION, NullCallWrapper(),
CALL_AS_METHOD);
// Restore context register.
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
......
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