Added codepath for ARM here (simple copy of PPC version)

This commit is contained in:
ptitSeb 2016-04-06 13:49:12 +02:00
parent b2fd42dc60
commit c4ac41ed56

View File

@ -34,6 +34,14 @@ inline ULONG _control87(WORD newcw, WORD mask)
fpw |= (newcw & mask);
}
return(fpw);
#elif defined(__arm__)
static WORD fpw=_PC_64;
if (mask != 0)
{
fpw &= ~mask;
fpw |= (newcw & mask);
}
return(fpw);
#else
WORD fpw = 0;