aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/platform.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h
index 2d3821c02..f87add552 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -281,10 +281,12 @@ typedef unsigned smalluint;
281#if 1 /* if needed: !defined(arch1) && !defined(arch2) */ 281#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
282# define ALIGN1 __attribute__((aligned(1))) 282# define ALIGN1 __attribute__((aligned(1)))
283# define ALIGN2 __attribute__((aligned(2))) 283# define ALIGN2 __attribute__((aligned(2)))
284# define ALIGN4 __attribute__((aligned(4)))
284#else 285#else
285/* Arches which MUST have 2 or 4 byte alignment for everything are here */ 286/* Arches which MUST have 2 or 4 byte alignment for everything are here */
286# define ALIGN1 287# define ALIGN1
287# define ALIGN2 288# define ALIGN2
289# define ALIGN4
288#endif 290#endif
289 291
290 292