Index: src/builtins/mips/builtins-mips.cc |
diff --git a/src/builtins/mips/builtins-mips.cc b/src/builtins/mips/builtins-mips.cc |
index 9f33a6eb9bd92b335d78b536c41f8c18243cd075..67fb5b5215be1a32a978bbc0d39fed2a0c1aa3f5 100644 |
--- a/src/builtins/mips/builtins-mips.cc |
+++ b/src/builtins/mips/builtins-mips.cc |
@@ -2120,14 +2120,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { |
__ bind(&target_not_constructor); |
{ |
__ sw(a1, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable); |
+ __ TailCallRuntime(Runtime::kThrowNotConstructor); |
} |
// 4c. The new.target is not a constructor, throw an appropriate TypeError. |
__ bind(&new_target_not_constructor); |
{ |
__ sw(a3, MemOperand(sp)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable); |
+ __ TailCallRuntime(Runtime::kThrowNotConstructor); |
} |
} |