Index: src/builtins/ppc/builtins-ppc.cc |
diff --git a/src/builtins/ppc/builtins-ppc.cc b/src/builtins/ppc/builtins-ppc.cc |
index ebea58e1438b5b0ee07acdd9fbe563c0f6f65bf9..f4d0f3e4459bfcef2283734af8ca22c96da69429 100644 |
--- a/src/builtins/ppc/builtins-ppc.cc |
+++ b/src/builtins/ppc/builtins-ppc.cc |
@@ -2111,14 +2111,14 @@ void Builtins::Generate_ReflectConstruct(MacroAssembler* masm) { |
__ bind(&target_not_constructor); |
{ |
__ StoreP(r4, 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); |
{ |
__ StoreP(r6, MemOperand(sp, 0)); |
- __ TailCallRuntime(Runtime::kThrowCalledNonCallable); |
+ __ TailCallRuntime(Runtime::kThrowNotConstructor); |
} |
} |