[mips] Fix typo introduced in r30874.

TBR=machenbach@chromium.org

Review URL: https://codereview.chromium.org/1363863002 .

Cr-Commit-Position: refs/heads/master@{#30876}
This commit is contained in:
Benedikt Meurer 2015-09-23 09:26:44 +02:00
parent 91c495ff44
commit aa491a10de
2 changed files with 4 additions and 4 deletions

View File

@ -1628,7 +1628,7 @@ void Builtins::Generate_Call(MacroAssembler* masm) {
// 3. Call to something that is not callable. // 3. Call to something that is not callable.
__ bind(&non_callable); __ bind(&non_callable);
{ {
FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); FrameScope scope(masm, StackFrame::INTERNAL);
__ Push(a1); __ Push(a1);
__ CallRuntime(Runtime::kThrowCalledNonCallable, 1); __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
} }
@ -1698,7 +1698,7 @@ void Builtins::Generate_Construct(MacroAssembler* masm) {
// 3. Construct of something that is not callable. // 3. Construct of something that is not callable.
__ bind(&non_callable); __ bind(&non_callable);
{ {
FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); FrameScope scope(masm, StackFrame::INTERNAL);
__ Push(a1); __ Push(a1);
__ CallRuntime(Runtime::kThrowCalledNonCallable, 1); __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
} }

View File

@ -1625,7 +1625,7 @@ void Builtins::Generate_Call(MacroAssembler* masm) {
// 3. Call to something that is not callable. // 3. Call to something that is not callable.
__ bind(&non_callable); __ bind(&non_callable);
{ {
FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); FrameScope scope(masm, StackFrame::INTERNAL);
__ Push(a1); __ Push(a1);
__ CallRuntime(Runtime::kThrowCalledNonCallable, 1); __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
} }
@ -1694,7 +1694,7 @@ void Builtins::Generate_Construct(MacroAssembler* masm) {
// 3. Construct of something that is not callable. // 3. Construct of something that is not callable.
__ bind(&non_callable); __ bind(&non_callable);
{ {
FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL); FrameScope scope(masm, StackFrame::INTERNAL);
__ Push(a1); __ Push(a1);
__ CallRuntime(Runtime::kThrowCalledNonCallable, 1); __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
} }