Retire CACHE_LINE_ALIGNMENT

Speed tests showed no benefit.

No functional change.

Resolves #97
This commit is contained in:
lucasart
2014-11-07 14:26:23 -05:00
committed by Gary Linscott
parent 8e98bd616e
commit 375797d51c
4 changed files with 0 additions and 15 deletions

View File

@@ -65,11 +65,6 @@
# endif
#define CACHE_LINE_SIZE 64
#if defined(_MSC_VER) || defined(__INTEL_COMPILER)
# define CACHE_LINE_ALIGNMENT __declspec(align(CACHE_LINE_SIZE))
#else
# define CACHE_LINE_ALIGNMENT __attribute__ ((aligned(CACHE_LINE_SIZE)))
#endif
#ifdef _MSC_VER
# define FORCE_INLINE __forceinline
@@ -326,8 +321,6 @@ inline Score operator/(Score s, int i) {
return make_score(mg_value(s) / i, eg_value(s) / i);
}
CACHE_LINE_ALIGNMENT
extern Value PieceValue[PHASE_NB][PIECE_NB];
struct ExtMove {