mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-02-18 08:31:12 +00:00
Add missing macro existence check in byte swapping code in bignum.c
This commit is contained in:
parent
f872007782
commit
5d91c0bbee
@ -741,7 +741,7 @@ static mbedtls_mpi_uint mpi_uint_bigendian_to_host( mbedtls_mpi_uint x )
|
||||
#if ( __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ )
|
||||
|
||||
/* For GCC and Clang, have builtins for byte swapping. */
|
||||
#if( defined(__GNUC__) && __GNUC_PREREQ(4,3) )
|
||||
#if( defined(__GNUC__) && defined(__GNUC_PREREQ) && __GNUC_PREREQ(4,3) )
|
||||
#define have_bswap
|
||||
#elif defined(__clang__) && \
|
||||
defined(__has_builtin) && \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user