]> git.sesse.net Git - stockfish/blobdiff - src/types.h
Revert "Cache line aligned TT"
[stockfish] / src / types.h
index dae86db310d6d80bc715e99c7aafd9ca482225e4..1def7d00aeb8f200230c7b50911e71c2acfdeb91 100644 (file)
 #   include <xmmintrin.h> // Intel and Microsoft header for _mm_prefetch()
 #  endif
 
-#define CACHE_LINE_SIZE 64
 #if defined(_MSC_VER) || defined(__INTEL_COMPILER)
-#  define CACHE_LINE_ALIGNMENT __declspec(align(CACHE_LINE_SIZE))
+#  define CACHE_LINE_ALIGNMENT __declspec(align(64))
 #else
-#  define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(CACHE_LINE_SIZE)))
+#  define CACHE_LINE_ALIGNMENT  __attribute__ ((aligned(64)))
 #endif
 
 #if defined(_MSC_VER)