Add extra message to assert

This commit is contained in:
gingerBill
2021-07-13 18:21:53 +01:00
parent da9870c77d
commit a745bb8f42
+1 -3
View File
@@ -6384,7 +6384,7 @@ LLVMValueRef lb_big_int_to_llvm(lbModule *m, Type *original_type, BigInt const *
i64 sz = type_size_of(original_type);
if (is_type_different_to_arch_endianness(original_type)) {
GB_ASSERT(sz == cast(i64)written);
GB_ASSERT_MSG(sz == cast(i64)written, "max_count: %tu, sz: %lld, written: %tu", max_count, sz, written);
for (i64 i = 0; i < sz/2; i++) {
u8 tmp = rop[i];
rop[i] = rop[sz-1-i];
@@ -6392,8 +6392,6 @@ LLVMValueRef lb_big_int_to_llvm(lbModule *m, Type *original_type, BigInt const *
}
}
LLVMValueRef value = LLVMConstIntOfArbitraryPrecision(lb_type(m, original_type), cast(unsigned)((written+7)/8), cast(u64 *)rop);
if (big_int_is_neg(a)) {
value = LLVMConstNeg(value);