Add _M_IX86 macro for MSVC

This commit is contained in:
Howard Chu 2013-05-25 10:16:55 -07:00
parent e31c7d3b31
commit 4b49291653

View File

@ -114,7 +114,7 @@
#define BIG_ENDIAN __BIG_ENDIAN
#endif
#if defined(__i386) || defined(__x86_64)
#if defined(__i386) || defined(__x86_64) || defined(_M_IX86)
#define MISALIGNED_OK 1
#endif