[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:
parent
91c495ff44
commit
aa491a10de
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user