| Index: src/builtins/arm/builtins-arm.cc
|
| diff --git a/src/builtins/arm/builtins-arm.cc b/src/builtins/arm/builtins-arm.cc
|
| index bf561c9f2a718550a21b2c37a0518223fa78ab8e..0e351ea6964e565ba08dc318c52d9985fcbd6b48 100644
|
| --- a/src/builtins/arm/builtins-arm.cc
|
| +++ b/src/builtins/arm/builtins-arm.cc
|
| @@ -2093,14 +2093,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) {
|
| __ bind(&target_not_constructor);
|
| {
|
| __ str(r1, MemOperand(sp, 0));
|
| - __ TailCallRuntime(Runtime::kThrowCalledNonCallable);
|
| + __ TailCallRuntime(Runtime::kThrowNotConstructor);
|
| }
|
|
|
| // 4c. The new.target is not a constructor, throw an appropriate TypeError.
|
| __ bind(&new_target_not_constructor);
|
| {
|
| __ str(r3, MemOperand(sp, 0));
|
| - __ TailCallRuntime(Runtime::kThrowCalledNonCallable);
|
| + __ TailCallRuntime(Runtime::kThrowNotConstructor);
|
| }
|
| }
|
|
|
|
|