]> git.sesse.net Git - stockfish/blobdiff - src/tt.h
Use aligned prefetch address
[stockfish] / src / tt.h
index e778a3722a31188ec6f4e8cff2f5d29d231aaf60..e838b0902fb9c140c8cd7bea1c551a00d4878213 100644 (file)
--- a/src/tt.h
+++ b/src/tt.h
@@ -70,6 +70,7 @@ private:
   uint32_t data;
   int16_t value_;
   int16_t depth_;
+  uint32_t pad_to_16_bytes;
 };
 
 /// The transposition table class.  This is basically just a huge array
@@ -105,4 +106,6 @@ private:
   uint8_t generation;
 };
 
+extern TranspositionTable TT;
+
 #endif // !defined(TT_H_INCLUDED)