mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
code style
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
parent
140fa15a7f
commit
c54f25e26c
|
|
@ -63,8 +63,10 @@
|
||||||
* only used here.
|
* only used here.
|
||||||
*/
|
*/
|
||||||
#if defined(MBEDTLS_EFFICIENT_UNALIGNED_ACCESS) && defined(MBEDTLS_HAVE_ASM)
|
#if defined(MBEDTLS_EFFICIENT_UNALIGNED_ACCESS) && defined(MBEDTLS_HAVE_ASM)
|
||||||
#if ((defined(__arm__) || defined(__thumb__) || defined(__thumb2__)) && (UINTPTR_MAX == 0xfffffffful)) || \
|
#if ((defined(__arm__) || defined(__thumb__) || defined(__thumb2__)) && \
|
||||||
(defined(__aarch64__) && ((UINTPTR_MAX == 0xffffffffull) || (UINTPTR_MAX == 0xffffffffffffffffull)))
|
(UINTPTR_MAX == 0xfffffffful)) || \
|
||||||
|
(defined(__aarch64__) && ((UINTPTR_MAX == 0xffffffffull) || \
|
||||||
|
(UINTPTR_MAX == 0xffffffffffffffffull)))
|
||||||
/* We check pointer sizes to avoid issues with them not matching register size requirements */
|
/* We check pointer sizes to avoid issues with them not matching register size requirements */
|
||||||
#define MBEDTLS_EFFICIENT_UNALIGNED_VOLATILE_ACCESS
|
#define MBEDTLS_EFFICIENT_UNALIGNED_VOLATILE_ACCESS
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue