| Index: src/builtins/builtins.h
|
| diff --git a/src/builtins/builtins.h b/src/builtins/builtins.h
|
| index ff3654ee59291da5fc9c34ee464c78e7b8a732e2..695d2232dec2034e079380fa13990a599f6c2810 100644
|
| --- a/src/builtins/builtins.h
|
| +++ b/src/builtins/builtins.h
|
| @@ -126,10 +126,9 @@
|
| ASM(InterpreterMarkBaselineOnReturn) \
|
| ASM(InterpreterPushArgsAndCall) \
|
| ASM(InterpreterPushArgsAndCallFunction) \
|
| + ASM(InterpreterPushArgsAndConstruct) \
|
| ASM(InterpreterPushArgsAndTailCall) \
|
| ASM(InterpreterPushArgsAndTailCallFunction) \
|
| - ASM(InterpreterPushArgsAndConstruct) \
|
| - ASM(InterpreterPushArgsAndConstructFunction) \
|
| ASM(InterpreterEnterBytecodeDispatch) \
|
| ASM(InterpreterOnStackReplacement) \
|
| \
|
| @@ -582,7 +581,6 @@
|
| Handle<Code> InterpreterPushArgsAndCall(
|
| TailCallMode tail_call_mode,
|
| CallableType function_type = CallableType::kAny);
|
| - Handle<Code> InterpreterPushArgsAndConstruct(CallableType function_type);
|
|
|
| Code* builtin(Name name) {
|
| // Code::cast cannot be used here since we access builtins
|
| @@ -627,9 +625,6 @@
|
| MacroAssembler* masm, TailCallMode tail_call_mode,
|
| CallableType function_type);
|
|
|
| - static void Generate_InterpreterPushArgsAndConstructImpl(
|
| - MacroAssembler* masm, CallableType function_type);
|
| -
|
| static void Generate_DatePrototype_GetField(MacroAssembler* masm,
|
| int field_index);
|
|
|
|
|