[CRT/ARM] Fix modulus on division (#3856)

This fixes all tests added in 759bdedc. Addendum to f2bc1f0e.

CORE-17607 CORE-17614 CORE-17604
This commit is contained in:
Roman Masanin 2021-07-28 14:34:59 +03:00 committed by Stanislav Motylkov
parent 759bdedc1e
commit fd8baca9f2
No known key found for this signature in database
GPG key ID: AFE513258CBA9E92

View file

@ -87,7 +87,11 @@ __rt_div_worker(
if (divisor > dividend)
{
result->data.quotient = 0;
result->data.modulus = divisor;
#ifdef _SIGNED_DIV_
if (dividend_sign)
dividend = -(INT3264)dividend;
#endif // _SIGNED_DIV_
result->data.modulus = dividend;
return;
}