Make clang/GCMole happy.

TBR=danno@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@11738 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent d04ba1b2
......@@ -2856,8 +2856,9 @@ Handle<Code> LoadStubCompiler::CompileLoadViaGetter(
// Call the JavaScript getter with the receiver on the stack.
__ push(r0);
__ 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.
__ ldr(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
......
......@@ -2860,8 +2860,9 @@ Handle<Code> LoadStubCompiler::CompileLoadViaGetter(
// Call the JavaScript getter with the receiver on the stack.
__ push(a0);
__ 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.
__ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
......
......@@ -2719,8 +2719,9 @@ Handle<Code> LoadStubCompiler::CompileLoadViaGetter(
// Call the JavaScript getter with the receiver on the stack.
__ push(rax);
__ 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.
__ movq(rsi, Operand(rbp, 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