arm: fix conversion from float/double to signed integer with VFP

The signed flag was not encoded in the instruction.
This commit is contained in:
Daniel Glöckner 2013-02-03 23:47:52 +01:00
parent 506193724f
commit f7f6025bd1

View File

@ -1926,7 +1926,7 @@ void gen_cvt_ftoi(int t)
#ifdef TCC_ARM_VFP
r=vfpr(gv(RC_FLOAT));
u=u?0:0x10000;
o(0xEEBC0A40|(r<<12)|r|T2CPR(r2)); /* ftoXiY */
o(0xEEBC0A40|(r<<12)|r|T2CPR(r2)|u); /* ftoXiY */
r2=intr(vtop->r=get_reg(RC_INT));
o(0xEE100A10|(r<<16)|(r2<<12));
return;