Commit f7b60fa7 authored by Milad Fa's avatar Milad Fa Committed by Commit Bot

S390: increase sp delta after pushing float32 on the stack

Change-Id: Ife7fb1c08acd864f59b1f45877e7e75fd81748a4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2625488Reviewed-by: 's avatarJunliang Yan <junyan@redhat.com>
Commit-Queue: Milad Fa <mfarazma@redhat.com>
Cr-Commit-Position: refs/heads/master@{#72052}
parent 3591de71
......@@ -2004,6 +2004,7 @@ CodeGenerator::CodeGenResult CodeGenerator::AssembleArchInstruction(
case MachineRepresentation::kFloat32:
__ lay(sp, MemOperand(sp, -kSystemPointerSize));
__ StoreF32(i.InputDoubleRegister(0), MemOperand(sp));
frame_access_state()->IncreaseSPDelta(1);
break;
case MachineRepresentation::kFloat64:
__ lay(sp, MemOperand(sp, -kDoubleSize));
......
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