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:
parent
506193724f
commit
f7f6025bd1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue