| Index: src/builtins/builtins.cc
|
| diff --git a/src/builtins/builtins.cc b/src/builtins/builtins.cc
|
| index 9a3d070f306c70ef9d2f81707cb87fc1123d78ab..477946d5d45512701b51e8827a2e7f312e7d1a5d 100644
|
| --- a/src/builtins/builtins.cc
|
| +++ b/src/builtins/builtins.cc
|
| @@ -5845,6 +5845,18 @@ Handle<Code> Builtins::InterpreterPushArgsAndCall(TailCallMode tail_call_mode,
|
| return Handle<Code>::null();
|
| }
|
|
|
| +Handle<Code> Builtins::InterpreterPushArgsAndConstruct(
|
| + CallableType function_type) {
|
| + switch (function_type) {
|
| + case CallableType::kJSFunction:
|
| + return InterpreterPushArgsAndConstructFunction();
|
| + case CallableType::kAny:
|
| + return InterpreterPushArgsAndConstruct();
|
| + }
|
| + UNREACHABLE();
|
| + return Handle<Code>::null();
|
| +}
|
| +
|
| namespace {
|
|
|
| class RelocatableArguments : public BuiltinArguments, public Relocatable {
|
|
|