mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
fix build with new gcc and clang compilers
This commit is contained in:
parent
8cf356224e
commit
4817b87b7d
|
@ -280,7 +280,7 @@ void tst_int_min_bug() {
|
||||||
mpz big;
|
mpz big;
|
||||||
mpz expected;
|
mpz expected;
|
||||||
mpz r;
|
mpz r;
|
||||||
m.set(big, UINT64_MAX);
|
m.set(big, static_cast<uint64>(UINT64_MAX));
|
||||||
m.set(expected, "18446744075857035263");
|
m.set(expected, "18446744075857035263");
|
||||||
m.sub(big, intmin, r);
|
m.sub(big, intmin, r);
|
||||||
std::cout << "r: " << m.to_string(r) << "\nexpected: " << m.to_string(expected) << "\n";
|
std::cout << "r: " << m.to_string(r) << "\nexpected: " << m.to_string(expected) << "\n";
|
||||||
|
|
Loading…
Reference in a new issue