relax CHECK_IA in takedrop_highrank
future overflow in ria*elWidth when allocating shouldn't be a worry as all such calculations should be done in u64, and CHECK_IA(x, 1) guarantees that x is (much) less than 2^60 in both usz configurations
This commit is contained in:
parent
e04819a28d
commit
ae3128c180
@ -485,7 +485,7 @@ NOINLINE B takedrop_highrank(bool take, B w, B x) {
|
|||||||
}
|
}
|
||||||
if (bad && !good) thrOOM();
|
if (bad && !good) thrOOM();
|
||||||
|
|
||||||
CHECK_IA(ria, 8);
|
CHECK_IA(ria, 1);
|
||||||
|
|
||||||
if (cellStart<=0) {
|
if (cellStart<=0) {
|
||||||
if (xr==rr) {
|
if (xr==rr) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user