Commit 4e84ef79 authored by Santiago Aboy Solanes's avatar Santiago Aboy Solanes Committed by Commit Bot

[cleanup] Delete old machine operator reduction

It doesn't do anything.

Bug: v8:10021
Change-Id: I430550f9ce25fd555ec32c8eb0f3276a63c7e53b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2000746Reviewed-by: 's avatarTobias Tebbi <tebbi@chromium.org>
Commit-Queue: Santiago Aboy Solanes <solanes@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65791}
parent c61efa9a
......@@ -787,9 +787,6 @@ Reduction MachineOperatorReducer::Reduce(Node* node) {
Int64Matcher m(node->InputAt(0));
if (m.HasValue()) return ReplaceInt32(static_cast<int32_t>(m.Value()));
if (m.IsChangeInt32ToInt64()) return Replace(m.node()->InputAt(0));
if (m.IsBitcastTaggedToWordForTagAndSmiBits()) {
Int64Matcher n(m.node()->InputAt(0));
}
break;
}
case IrOpcode::kTruncateFloat64ToFloat32: {
......@@ -878,6 +875,7 @@ Reduction MachineOperatorReducer::ReduceInt32Add(Node* node) {
return Changed(node);
}
}
return NoChange();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment