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:
Steven Johnson 2009-12-01 17:40:25 -08:00
parent 45a6270f4c
commit 4732e1b682

View File

@ -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
{