Browse Source

Don't look at __SIZEOF_INT128__ on clang-3.2 or earlier, because they don't define it.

master
Mike Hamburg 10 years ago
parent
commit
e692da09d3
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/include/word.h

+ 2
- 1
src/include/word.h View File

@@ -26,7 +26,8 @@
#include <immintrin.h> #include <immintrin.h>
#endif #endif


#if (__SIZEOF_INT128__ == 16 \
#if ((__SIZEOF_INT128__ == 16 \
|| 10*__clang_major__ + __clang_minor <= 32) \
&& __SIZEOF_SIZE_T__ == 8 \ && __SIZEOF_SIZE_T__ == 8 \
&& (__SIZEOF_LONG__==8 || __POINTER_WIDTH__==64) \ && (__SIZEOF_LONG__==8 || __POINTER_WIDTH__==64) \
&& !defined(GOLDI_FORCE_32_BIT)) && !defined(GOLDI_FORCE_32_BIT))


Loading…
Cancel
Save