define SRTICT_ALIGN to - if the system is x86/x64 system

This commit is contained in:
Alam Ed Arias 2016-07-23 23:26:08 -04:00
parent ddce305c17
commit 03ddc1f29a
1 changed files with 2 additions and 0 deletions

View File

@ -61,6 +61,8 @@
#ifndef STRICT_ALIGN
#if !(defined(__i386) || defined (__amd64)) || defined (__clang__)
#define STRICT_ALIGN 1
#else
#define STRICT_ALIGN 0
#endif
#endif