modes/modes_lcl.h: make it indent-friendly.
Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
parent
dbd87ffc21
commit
1e8f69c6a5
@ -27,17 +27,17 @@ typedef unsigned char u8;
|
|||||||
|
|
||||||
#define STRICT_ALIGNMENT 1
|
#define STRICT_ALIGNMENT 1
|
||||||
#ifndef PEDANTIC
|
#ifndef PEDANTIC
|
||||||
#if defined(__i386) || defined(__i386__) || \
|
# if defined(__i386) || defined(__i386__) || \
|
||||||
defined(__x86_64) || defined(__x86_64__) || \
|
defined(__x86_64) || defined(__x86_64__) || \
|
||||||
defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || \
|
defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64) || \
|
||||||
defined(__aarch64__) || \
|
defined(__aarch64__) || \
|
||||||
defined(__s390__) || defined(__s390x__)
|
defined(__s390__) || defined(__s390x__)
|
||||||
# undef STRICT_ALIGNMENT
|
# undef STRICT_ALIGNMENT
|
||||||
#endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(PEDANTIC) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
|
#if !defined(PEDANTIC) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
|
||||||
#if defined(__GNUC__) && __GNUC__>=2
|
# if defined(__GNUC__) && __GNUC__>=2
|
||||||
# if defined(__x86_64) || defined(__x86_64__)
|
# if defined(__x86_64) || defined(__x86_64__)
|
||||||
# define BSWAP8(x) ({ u64 ret=(x); \
|
# define BSWAP8(x) ({ u64 ret=(x); \
|
||||||
asm ("bswapq %0" \
|
asm ("bswapq %0" \
|
||||||
@ -70,7 +70,7 @@ typedef unsigned char u8;
|
|||||||
: "=r"(ret) : "r"((u32)(x))); \
|
: "=r"(ret) : "r"((u32)(x))); \
|
||||||
ret; })
|
ret; })
|
||||||
# endif
|
# endif
|
||||||
#elif defined(_MSC_VER)
|
# elif defined(_MSC_VER)
|
||||||
# if _MSC_VER>=1300
|
# if _MSC_VER>=1300
|
||||||
# pragma intrinsic(_byteswap_uint64,_byteswap_ulong)
|
# pragma intrinsic(_byteswap_uint64,_byteswap_ulong)
|
||||||
# define BSWAP8(x) _byteswap_uint64((u64)(x))
|
# define BSWAP8(x) _byteswap_uint64((u64)(x))
|
||||||
@ -82,7 +82,7 @@ typedef unsigned char u8;
|
|||||||
}
|
}
|
||||||
# define BSWAP4(x) _bswap4(x)
|
# define BSWAP4(x) _bswap4(x)
|
||||||
# endif
|
# endif
|
||||||
#endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(BSWAP4) && !defined(STRICT_ALIGNMENT)
|
#if defined(BSWAP4) && !defined(STRICT_ALIGNMENT)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user