3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-10-28 04:38:57 -07:00
parent 376d2c1ed4
commit e24481dacd

View file

@ -2034,8 +2034,9 @@ void mpz_manager<SYNCH>::machine_div2k(mpz & a, unsigned k) {
return;
if (is_small(a)) {
if (k < 32) {
int twok = 1 << k;
a.m_val /= twok;
int64_t twok = 1ull << ((int64_t)k);
int64_t val = a.m_val;
a.m_val = (int)(val/twok);
}
else {
a.m_val = 0;