Commit bbd6dc01 authored by Junliang Yan's avatar Junliang Yan Committed by V8 LUCI CQ

ppc: fix type on StoreF32/F64 intruction

Change-Id: If4fb93b5c1f0775b6caaff2a5842fe07dfadb286
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3124812Reviewed-by: 's avatarMilad Fa <mfarazma@redhat.com>
Commit-Queue: Junliang Yan <junyan@redhat.com>
Cr-Commit-Position: refs/heads/main@{#76542}
parent 1608bf79
......@@ -3317,7 +3317,7 @@ void TurboAssembler::StoreF64LE(DoubleRegister dst, const MemOperand& mem,
LoadU64(scratch, mem, scratch2);
StoreU64LE(scratch, mem, scratch2);
#else
LoadF64(dst, mem, scratch);
StoreF64(dst, mem, scratch);
#endif
}
......@@ -3328,7 +3328,7 @@ void TurboAssembler::StoreF32LE(DoubleRegister dst, const MemOperand& mem,
LoadU32(scratch, mem, scratch2);
StoreU32LE(scratch, mem, scratch2);
#else
LoadF64(dst, mem, scratch);
StoreF32(dst, mem, scratch);
#endif
}
......
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