Add experimental support for a threaded semantic checker to -threaded-checker

This commit is contained in:
gingerBill
2021-07-10 23:51:37 +01:00
parent 690374d4de
commit d9e6ade030
12 changed files with 252 additions and 101 deletions

View File

@@ -587,7 +587,9 @@ void big_int_add(BigInt *dst, BigInt const *x, BigInt const *y) {
}
}
GB_ASSERT(overflow == 0);
if (overflow != 0) {
GB_ASSERT_MSG(overflow == 0, "%p %p %p", dst, x, y);
}
dst->len = i;
big_int_normalize(dst);
return;