mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
include/platform.h: PowerPC can also do unaligned access
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
81fe2b15f3
commit
80f4275629
@ -200,7 +200,7 @@
|
|||||||
/* NB: unaligned parameter should be a pointer, aligned one -
|
/* NB: unaligned parameter should be a pointer, aligned one -
|
||||||
* a lvalue. This makes it more likely to not swap them by mistake
|
* a lvalue. This makes it more likely to not swap them by mistake
|
||||||
*/
|
*/
|
||||||
#if defined(i386) || defined(__x86_64__)
|
#if defined(i386) || defined(__x86_64__) || defined(__powerpc__)
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
typedef int bb__aliased_int FIX_ALIASING;
|
typedef int bb__aliased_int FIX_ALIASING;
|
||||||
typedef uint16_t bb__aliased_uint16_t FIX_ALIASING;
|
typedef uint16_t bb__aliased_uint16_t FIX_ALIASING;
|
||||||
|
Loading…
Reference in New Issue
Block a user