Fix tests

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman 2023-04-19 18:38:54 +01:00
parent fe8a8cd100
commit d54cb83584

View file

@ -331,10 +331,10 @@ void mpi_core_clz(int lz, int tz)
if ((lz + tz) > 0) {
// some zero bits
uint32_t s = (sizeof(mbedtls_mpi_uint) * 8 - lz - tz);
x = ((1ULL << s) - 1) << tz;
x = ((((mbedtls_mpi_uint) 1) << s) - 1) << tz;
} else {
// all bits set
x = ~0ULL;
x = ~((mbedtls_mpi_uint) 0);
}
}