diff options
| author | gingerBill <bill@gingerbill.org> | 2021-10-23 19:24:47 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-10-23 19:24:47 +0100 |
| commit | b4df51e4834cda2d37a353717133663e9e1393c3 (patch) | |
| tree | d98a3621bed8e2079c9f9d5794d3fd24bd9269b3 /src/llvm_backend_const.cpp | |
| parent | 209684d5a4843fd52a248acd361b9791a96e6205 (diff) | |
| parent | 06f47621442973a664b5928bb20295f4b7b56196 (diff) | |
Merge branch 'master' into new-matrix-type
Diffstat (limited to 'src/llvm_backend_const.cpp')
| -rw-r--r-- | src/llvm_backend_const.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend_const.cpp b/src/llvm_backend_const.cpp index b543089e5..49c3207fa 100644 --- a/src/llvm_backend_const.cpp +++ b/src/llvm_backend_const.cpp @@ -329,7 +329,7 @@ LLVMValueRef lb_big_int_to_llvm(lbModule *m, Type *original_type, BigInt const * debug_print_big_int(a); gb_printf_err("%s -> %tu\n", type_to_string(original_type), sz);; } - GB_ASSERT_MSG(sz >= max_count, "max_count: %tu, sz: %tu, written: %tu", max_count, sz, written); + GB_ASSERT_MSG(sz >= max_count, "max_count: %tu, sz: %tu, written: %tu, type %s", max_count, sz, written, type_to_string(original_type)); GB_ASSERT(gb_size_of(rop64) >= sz); mp_err err = mp_pack(rop, sz, &written, |