| Index: src/compiler/js-intrinsic-lowering.cc
|
| diff --git a/src/compiler/js-intrinsic-lowering.cc b/src/compiler/js-intrinsic-lowering.cc
|
| index c497683f2a1ea69d690fbe47c1f064271240ac50..c33632ea69c3a7aa9aaeada0c0c9d2c559c6a0e9 100644
|
| --- a/src/compiler/js-intrinsic-lowering.cc
|
| +++ b/src/compiler/js-intrinsic-lowering.cc
|
| @@ -30,8 +30,6 @@ Reduction JSIntrinsicLowering::Reduce(Node* node) {
|
| Runtime::FunctionForId(CallRuntimeParametersOf(node->op()).id());
|
| if (f->intrinsic_type != Runtime::IntrinsicType::INLINE) return NoChange();
|
| switch (f->function_id) {
|
| - case Runtime::kInlineConstructDouble:
|
| - return ReduceConstructDouble(node);
|
| case Runtime::kInlineCreateIterResultObject:
|
| return ReduceCreateIterResultObject(node);
|
| case Runtime::kInlineDeoptimizeNow:
|
| @@ -109,19 +107,6 @@ Reduction JSIntrinsicLowering::ReduceCreateIterResultObject(Node* node) {
|
| }
|
|
|
|
|
| -Reduction JSIntrinsicLowering::ReduceConstructDouble(Node* node) {
|
| - Node* high = NodeProperties::GetValueInput(node, 0);
|
| - Node* low = NodeProperties::GetValueInput(node, 1);
|
| - Node* value =
|
| - graph()->NewNode(machine()->Float64InsertHighWord32(),
|
| - graph()->NewNode(machine()->Float64InsertLowWord32(),
|
| - jsgraph()->Constant(0), low),
|
| - high);
|
| - ReplaceWithValue(node, value);
|
| - return Replace(value);
|
| -}
|
| -
|
| -
|
| Reduction JSIntrinsicLowering::ReduceDeoptimizeNow(Node* node) {
|
| if (mode() != kDeoptimizationEnabled) return NoChange();
|
| Node* const frame_state = NodeProperties::GetFrameStateInput(node, 0);
|
|
|