| Index: src/compiler/js-intrinsic-lowering.cc
|
| diff --git a/src/compiler/js-intrinsic-lowering.cc b/src/compiler/js-intrinsic-lowering.cc
|
| index abeb11001d6a5c8e408ab87e0d4f17dd87e2f7fc..60afd4a0055ec6da49457a313b1ffa3f10d4b4c0 100644
|
| --- a/src/compiler/js-intrinsic-lowering.cc
|
| +++ b/src/compiler/js-intrinsic-lowering.cc
|
| @@ -95,8 +95,6 @@ Reduction JSIntrinsicLowering::Reduce(Node* node) {
|
| return ReduceToString(node);
|
| case Runtime::kInlineCall:
|
| return ReduceCall(node);
|
| - case Runtime::kInlineTailCall:
|
| - return ReduceTailCall(node);
|
| case Runtime::kInlineGetSuperConstructor:
|
| return ReduceGetSuperConstructor(node);
|
| default:
|
| @@ -507,16 +505,6 @@ Reduction JSIntrinsicLowering::ReduceCall(Node* node) {
|
| }
|
|
|
|
|
| -Reduction JSIntrinsicLowering::ReduceTailCall(Node* node) {
|
| - size_t const arity = CallRuntimeParametersOf(node->op()).arity();
|
| - NodeProperties::ChangeOp(node,
|
| - javascript()->CallFunction(arity, VectorSlotPair(),
|
| - ConvertReceiverMode::kAny,
|
| - TailCallMode::kAllow));
|
| - return Changed(node);
|
| -}
|
| -
|
| -
|
| Reduction JSIntrinsicLowering::ReduceGetSuperConstructor(Node* node) {
|
| Node* active_function = NodeProperties::GetValueInput(node, 0);
|
| Node* effect = NodeProperties::GetEffectInput(node);
|
|
|