From b40da22357563bf53fa93823342f8ab59899222d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 21 Jan 2011 01:16:09 +0100 Subject: fix compile error on non-x86 architectures Signed-off-by: Denys Vlasenko --- include/platform.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/platform.h') diff --git a/include/platform.h b/include/platform.h index 6328ff6ad..cbde7bc7b 100644 --- a/include/platform.h +++ b/include/platform.h @@ -218,14 +218,15 @@ /* ---- Unaligned access ------------------------------------ */ +typedef int bb__aliased_int FIX_ALIASING; +typedef uint16_t bb__aliased_uint16_t FIX_ALIASING; +typedef uint32_t bb__aliased_uint32_t FIX_ALIASING; + /* NB: unaligned parameter should be a pointer, aligned one - * a lvalue. This makes it more likely to not swap them by mistake */ #if defined(i386) || defined(__x86_64__) || defined(__powerpc__) # include -typedef int bb__aliased_int FIX_ALIASING; -typedef uint16_t bb__aliased_uint16_t FIX_ALIASING; -typedef uint32_t bb__aliased_uint32_t FIX_ALIASING; # define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp)) # define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p)) # define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p)) -- cgit v1.2.3