under clang, defined does not means true

This commit is contained in:
Alam Ed Arias 2016-07-23 23:14:24 -04:00
parent 82fad646e7
commit ddce305c17
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,9 @@
* Unconditionally aligning does not cost very much, so do it if unsure
*/
#ifndef STRICT_ALIGN
# define STRICT_ALIGN !(defined(__i386) || defined (__amd64)) || defined (__clang__)
#if !(defined(__i386) || defined (__amd64)) || defined (__clang__)
#define STRICT_ALIGN 1
#endif
#endif
/*