Index: src/mips64/builtins-mips64.cc |
diff --git a/src/mips64/builtins-mips64.cc b/src/mips64/builtins-mips64.cc |
index b588f78eee709c8f777ef445fd962498ad970716..581fbe781aaec34d2084ca701d8a697b020b7b2b 100644 |
--- a/src/mips64/builtins-mips64.cc |
+++ b/src/mips64/builtins-mips64.cc |
@@ -1625,7 +1625,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); |
} |
@@ -1694,7 +1694,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); |
} |