| Index: src/mips/builtins-mips.cc
|
| diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
|
| index 939ef052ff018ef98d02512ebc5eb0a89447c6e1..600764ac4eba1235c6886055f703d4ab256d2b2e 100644
|
| --- a/src/mips/builtins-mips.cc
|
| +++ b/src/mips/builtins-mips.cc
|
| @@ -1628,7 +1628,7 @@ void Builtins::Generate_Call(MacroAssembler* masm) {
|
| // 3. Call to something that is not callable.
|
| __ bind(&non_callable);
|
| {
|
| - FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL);
|
| + FrameScope scope(masm, StackFrame::INTERNAL);
|
| __ Push(a1);
|
| __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
|
| }
|
| @@ -1698,7 +1698,7 @@ void Builtins::Generate_Construct(MacroAssembler* masm) {
|
| // 3. Construct of something that is not callable.
|
| __ bind(&non_callable);
|
| {
|
| - FrameAndConstantPoolScope scope(masm, StackFrame::INTERNAL);
|
| + FrameScope scope(masm, StackFrame::INTERNAL);
|
| __ Push(a1);
|
| __ CallRuntime(Runtime::kThrowCalledNonCallable, 1);
|
| }
|
|
|