Revert "Cache line aligned TT"

This reverts commit 083fe58124

It seems to break Android build

No functional change.
This commit is contained in:
Marco Costalba
2013-04-30 08:08:54 +02:00
parent 06b9140e5c
commit 293c44bc09
4 changed files with 11 additions and 11 deletions

View File

@@ -56,11 +56,10 @@
# 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)