| Index: src/builtins/mips/builtins-mips.cc
|
| diff --git a/src/builtins/mips/builtins-mips.cc b/src/builtins/mips/builtins-mips.cc
|
| index e950112f9e5e2f3ff48c976ac7e1cbc4dcb2446a..63c3329e24dcc8e566b8cd738eb3f3008f21e5cb 100644
|
| --- a/src/builtins/mips/builtins-mips.cc
|
| +++ b/src/builtins/mips/builtins-mips.cc
|
| @@ -1198,8 +1198,7 @@
|
| }
|
|
|
| // static
|
| -void Builtins::Generate_InterpreterPushArgsAndConstructImpl(
|
| - MacroAssembler* masm, CallableType construct_type) {
|
| +void Builtins::Generate_InterpreterPushArgsAndConstruct(MacroAssembler* masm) {
|
| // ----------- S t a t e -------------
|
| // -- a0 : argument count (not including receiver)
|
| // -- a3 : new target
|
| @@ -1224,16 +1223,8 @@
|
| __ bind(&loop_check);
|
| __ Branch(&loop_header, gt, a2, Operand(t0));
|
|
|
| - if (construct_type == CallableType::kJSFunction) {
|
| - // TODO(mythria): Change this when allocation site feedback is available.
|
| - // ConstructFunction initializes allocation site to undefined.
|
| - __ Jump(masm->isolate()->builtins()->ConstructFunction(),
|
| - RelocInfo::CODE_TARGET);
|
| - } else {
|
| - DCHECK_EQ(construct_type, CallableType::kAny);
|
| - // Call the constructor with a0, a1, and a3 unmodified.
|
| - __ Jump(masm->isolate()->builtins()->Construct(), RelocInfo::CODE_TARGET);
|
| - }
|
| + // Call the constructor with a0, a1, and a3 unmodified.
|
| + __ Jump(masm->isolate()->builtins()->Construct(), RelocInfo::CODE_TARGET);
|
| }
|
|
|
| void Builtins::Generate_InterpreterEnterBytecodeDispatch(MacroAssembler* masm) {
|
|
|