From 5cd8a11834d1fbb12439604ff6793b9f0bae4a15 Mon Sep 17 00:00:00 2001 From: Alexey Kardashevskiy Date: Sun, 12 Jan 2014 21:37:37 +0000 Subject: arm: fix compile on bigendian host Signed-off-by: Alexey Kardashevskiy Signed-off-by: Peter Maydell --- target-arm/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-arm/cpu.h b/target-arm/cpu.h index f1307eb488..198b6b8d4e 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -73,7 +73,7 @@ * significant half of a uint64_t struct member. */ #ifdef HOST_WORDS_BIGENDIAN -#define offsetoflow32(S, M) offsetof(S, M + sizeof(uint32_t)) +#define offsetoflow32(S, M) (offsetof(S, M) + sizeof(uint32_t)) #else #define offsetoflow32(S, M) offsetof(S, M) #endif -- cgit v1.2.3