diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index a41daa08c..804fab4e1 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -291,10 +291,12 @@ typedef unsigned smalluint; | |||
291 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ | 291 | #if 1 /* if needed: !defined(arch1) && !defined(arch2) */ |
292 | # define ALIGN1 __attribute__((aligned(1))) | 292 | # define ALIGN1 __attribute__((aligned(1))) |
293 | # define ALIGN2 __attribute__((aligned(2))) | 293 | # define ALIGN2 __attribute__((aligned(2))) |
294 | # define ALIGN4 __attribute__((aligned(4))) | ||
294 | #else | 295 | #else |
295 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ | 296 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
296 | # define ALIGN1 | 297 | # define ALIGN1 |
297 | # define ALIGN2 | 298 | # define ALIGN2 |
299 | # define ALIGN4 | ||
298 | #endif | 300 | #endif |
299 | 301 | ||
300 | 302 | ||