From: whesse@chromium.org Date: Sun, 18 Sep 2011 21:16:08 +0000 (+0000) Subject: Fix presubmit - remove stray whitespace on empty lines. X-Git-Tag: upstream/4.7.83~18438 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acb0f103c1141db33492de04f8ca450c1a4285f1;p=platform%2Fupstream%2Fv8.git Fix presubmit - remove stray whitespace on empty lines. BUG= TEST= Review URL: http://codereview.chromium.org/7931023 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@9318 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc index 4b959a4..c269287 100644 --- a/src/mips/builtins-mips.cc +++ b/src/mips/builtins-mips.cc @@ -1292,7 +1292,7 @@ void Builtins::Generate_FunctionCall(MacroAssembler* masm) { __ bind(&slow); __ li(t0, Operand(1, RelocInfo::NONE)); // Indicate function proxy. __ Branch(&shift_arguments, eq, a2, Operand(JS_FUNCTION_PROXY_TYPE)); - + __ bind(&non_function); __ li(t0, Operand(2, RelocInfo::NONE)); // Indicate non-function. @@ -1514,7 +1514,7 @@ void Builtins::Generate_FunctionApply(MacroAssembler* masm) { __ lw(a1, MemOperand(fp, kFunctionOffset)); __ GetObjectType(a1, a2, a2); __ Branch(&call_proxy, ne, a2, Operand(JS_FUNCTION_TYPE)); - + __ InvokeFunction(a1, actual, CALL_FUNCTION, NullCallWrapper(), CALL_AS_METHOD);