Commit b9ba2959 authored by Milad Fa's avatar Milad Fa Committed by V8 LUCI CQ

S390 [simd]: remove output from VisitStoreLane

Change-Id: Ibe2be0079386dd56135a0ee3f2732797b62f258a
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3789512Reviewed-by: 's avatarJunliang Yan <junyan@redhat.com>
Commit-Queue: Milad Farazmand <mfarazma@redhat.com>
Cr-Commit-Position: refs/heads/main@{#82012}
parent bf53970e
......@@ -2904,7 +2904,6 @@ void InstructionSelector::VisitStoreLane(Node* node) {
}
S390OperandGenerator g(this);
InstructionOperand outputs[] = {g.DefineSameAsFirst(node)};
InstructionOperand inputs[5];
size_t input_count = 0;
......@@ -2914,7 +2913,7 @@ void InstructionSelector::VisitStoreLane(Node* node) {
AddressingMode mode =
g.GetEffectiveAddressMemoryOperand(node, inputs, &input_count);
opcode |= AddressingModeField::encode(mode);
Emit(opcode, 1, outputs, input_count, inputs);
Emit(opcode, 0, nullptr, input_count, inputs);
}
void InstructionSelector::VisitTruncateFloat32ToInt32(Node* node) {
......
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