Feature #10081 ยป macro_powerpc64.patch
regint.h | ||
---|---|---|
#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
|
||
defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
|
||
defined(__powerpc64__) || \
|
||
defined(__mc68020__)
|
||
#define PLATFORM_UNALIGNED_WORD_ACCESS
|
||
#endif
|
siphash.c | ||
---|---|---|
#ifndef UNALIGNED_WORD_ACCESS
|
||
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
|
||
defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
|
||
defined(__powerpc64__) || \
|
||
defined(__mc68020__)
|
||
# define UNALIGNED_WORD_ACCESS 1
|
||
# endif
|
st.c | ||
---|---|---|
#ifndef UNALIGNED_WORD_ACCESS
|
||
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
|
||
defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
|
||
defined(__powerpc64__) || \
|
||
defined(__mc68020__)
|
||
# define UNALIGNED_WORD_ACCESS 1
|
||
# endif
|