mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
nanojit/Assembler.cpp: when LIR_stqi calls asm_store32 twice, pass LIR_sti for the opcode, rather than op. (r=me)
--HG-- extra : convert_revision : 0da91726eca5ccbfed98d340e428d3303d5708f0
This commit is contained in:
parent
45a6270f4c
commit
4732e1b682
@ -1186,8 +1186,8 @@ namespace nanojit
|
||||
if (value->isop(LIR_qjoin) && op != LIR_st32f)
|
||||
{
|
||||
// this is correct for little-endian only
|
||||
asm_store32(op, value->oprnd1(), dr, base);
|
||||
asm_store32(op, value->oprnd2(), dr+4, base);
|
||||
asm_store32(LIR_sti, value->oprnd1(), dr, base);
|
||||
asm_store32(LIR_sti, value->oprnd2(), dr+4, base);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user