mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
- Fix modulo bug that was masked by the correct code in libgcc.a which is
used in almost all programs unless a shared library specifically ignores libgcc.a.
This commit is contained in:
parent
93a4ebf345
commit
738006fa2c
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ __moddi3(a, b)
|
|||
else
|
||||
ua = a, neg = 0;
|
||||
if (b < 0)
|
||||
ub = -(u_quad_t)b, neg ^= 1;
|
||||
ub = -(u_quad_t)b;
|
||||
else
|
||||
ub = b;
|
||||
(void)__qdivrem(ua, ub, &ur);
|
||||
|
|
|
|||
Loading…
Reference in a new issue