mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
fixed warnings
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
fd0920eb36
commit
7d196201dc
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -64,3 +64,4 @@ src/util/version.h
|
||||||
src/api/java/Native.cpp
|
src/api/java/Native.cpp
|
||||||
src/api/java/Native.java
|
src/api/java/Native.java
|
||||||
src/api/java/enumerations/*.java
|
src/api/java/enumerations/*.java
|
||||||
|
*.bak
|
||||||
|
|
|
@ -1535,7 +1535,7 @@ bool mpz_manager<SYNCH>::is_power_of_two(mpz const & a, unsigned & shift) {
|
||||||
return false;
|
return false;
|
||||||
if (is_small(a)) {
|
if (is_small(a)) {
|
||||||
if (::is_power_of_two(a.m_val)) {
|
if (::is_power_of_two(a.m_val)) {
|
||||||
shift = ::log2(a.m_val);
|
shift = ::log2((unsigned)a.m_val);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -1838,7 +1838,7 @@ unsigned mpz_manager<SYNCH>::log2(mpz const & a) {
|
||||||
if (is_nonpos(a))
|
if (is_nonpos(a))
|
||||||
return 0;
|
return 0;
|
||||||
if (is_small(a))
|
if (is_small(a))
|
||||||
return ::log2(a.m_val);
|
return ::log2((unsigned)a.m_val);
|
||||||
#ifndef _MP_GMP
|
#ifndef _MP_GMP
|
||||||
COMPILE_TIME_ASSERT(sizeof(digit_t) == 8 || sizeof(digit_t) == 4);
|
COMPILE_TIME_ASSERT(sizeof(digit_t) == 8 || sizeof(digit_t) == 4);
|
||||||
mpz_cell * c = a.m_ptr;
|
mpz_cell * c = a.m_ptr;
|
||||||
|
@ -1860,7 +1860,7 @@ unsigned mpz_manager<SYNCH>::mlog2(mpz const & a) {
|
||||||
if (is_nonneg(a))
|
if (is_nonneg(a))
|
||||||
return 0;
|
return 0;
|
||||||
if (is_small(a))
|
if (is_small(a))
|
||||||
return ::log2(-a.m_val);
|
return ::log2((unsigned)-a.m_val);
|
||||||
#ifndef _MP_GMP
|
#ifndef _MP_GMP
|
||||||
COMPILE_TIME_ASSERT(sizeof(digit_t) == 8 || sizeof(digit_t) == 4);
|
COMPILE_TIME_ASSERT(sizeof(digit_t) == 8 || sizeof(digit_t) == 4);
|
||||||
mpz_cell * c = a.m_ptr;
|
mpz_cell * c = a.m_ptr;
|
||||||
|
|
Loading…
Reference in a new issue