@ -391,6 +391,7 @@ int64_t getInt64(bool *pb, fp::Block& b, const fp::Op& op)
if (isNegative) {
if (v <= c) { // include c
if (pb) *pb = true;
if (v == c) return int64_t(-1) << 63;
return int64_t(-v);
}
} else {