Merge 826390d5094aaffaaf40b6f08e205709e64dd052 into f4a1aceb8ca7198b11447d6e1885ce70feb2dcc6

This commit is contained in:
DragonBluep 2026-07-27 21:01:26 +01:00 committed by GitHub
commit 9787201a20
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -332,7 +332,8 @@ static inline void mbedtls_xor_no_simd(unsigned char *r,
uint32_t x = mbedtls_get_unaligned_uint32(a + i) ^ mbedtls_get_unaligned_uint32(b + i);
mbedtls_put_unaligned_uint32(r + i, x);
}
#if defined(__IAR_SYSTEMS_ICC__)
#if defined(__IAR_SYSTEMS_ICC__) || \
(defined(MBEDTLS_ARCH_IS_ARM32) && defined(MBEDTLS_COMPILER_IS_GCC) && MBEDTLS_GCC_VERSION >= 150300)
if (n % 4 == 0) {
return;
}