[mips] Fix typo introduced in r30874.
authorBenedikt Meurer <bmeurer@chromium.org>
Wed, 23 Sep 2015 07:26:44 +0000 (09:26 +0200)
committerBenedikt Meurer <bmeurer@chromium.org>
Wed, 23 Sep 2015 07:27:12 +0000 (07:27 +0000)
TBR=machenbach@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#30876}

src/mips/builtins-mips.cc
src/mips64/builtins-mips64.cc

index 939ef05..600764a 100644 (file)
@@ -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);
   }
index b588f78..581fbe7 100644 (file)
@@ -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);
   }