Procházet zdrojové kódy

Add extra message to assert

gingerBill před 4 roky
rodič
revize
a745bb8f42
1 změnil soubory, kde provedl 1 přidání a 3 odebrání
  1. 1 3
      src/llvm_backend.cpp

+ 1 - 3
src/llvm_backend.cpp

@@ -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);