aboutsummaryrefslogtreecommitdiff
path: root/src/big_int.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/big_int.cpp')
-rw-r--r--src/big_int.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/big_int.cpp b/src/big_int.cpp
index 9e57b3fc2..168e53fb2 100644
--- a/src/big_int.cpp
+++ b/src/big_int.cpp
@@ -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;