mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CRT/ARM] Fix modulus on division (#3856)
This fixes all tests added in759bdedc
. Addendum tof2bc1f0e
. CORE-17607 CORE-17614 CORE-17604
This commit is contained in:
parent
759bdedc1e
commit
fd8baca9f2
1 changed files with 5 additions and 1 deletions
|
@ -87,7 +87,11 @@ __rt_div_worker(
|
||||||
if (divisor > dividend)
|
if (divisor > dividend)
|
||||||
{
|
{
|
||||||
result->data.quotient = 0;
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue