ci: workaround -usecache issue afte 2d87ac4

This commit is contained in:
Delyan Angelov 2025-07-27 20:24:13 +03:00
parent 2d87ac4837
commit ace5df7236
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -364,7 +364,9 @@ pub fn sub_64(x u64, y u64, borrow u64) (u64, u64) {
}
// --- Full-width multiply ---
const two32 = u64(0x100000000)
@[markused]
pub const two32 = u64(0x100000000)
const mask32 = two32 - 1
const overflow_error = 'Overflow Error'
const divide_error = 'Divide Error'