aboutsummaryrefslogtreecommitdiff
path: root/include/exec
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-06-03 14:55:03 -0700
committerRichard Henderson <richard.henderson@linaro.org>2023-07-15 08:02:32 +0100
commite73f27003e777fd9b77d13e71c5268015b8ed2b6 (patch)
treef21c021406e1a749fea967fd34d1d9e73e57d616 /include/exec
parent0f41be8d8958e9a84f9b4242d045c71d641da3be (diff)
downloadqemu-e73f27003e777fd9b77d13e71c5268015b8ed2b6.zip
qemu-e73f27003e777fd9b77d13e71c5268015b8ed2b6.tar.gz
qemu-e73f27003e777fd9b77d13e71c5268015b8ed2b6.tar.bz2
include/exec/user: Set ABI_LLONG_ALIGNMENT to 4 for microblaze
Based on gcc's microblaze.h setting BIGGEST_ALIGNMENT to 32 bits. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/user/abitypes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/exec/user/abitypes.h b/include/exec/user/abitypes.h
index 743b8bb..beba0a4 100644
--- a/include/exec/user/abitypes.h
+++ b/include/exec/user/abitypes.h
@@ -15,7 +15,9 @@
#define ABI_LLONG_ALIGNMENT 2
#endif
-#if (defined(TARGET_I386) && !defined(TARGET_X86_64)) || defined(TARGET_SH4)
+#if (defined(TARGET_I386) && !defined(TARGET_X86_64)) \
+ || defined(TARGET_SH4) \
+ || defined(TARGET_MICROBLAZE)
#define ABI_LLONG_ALIGNMENT 4
#endif