]> git.sesse.net Git - stockfish/blobdiff - src/position.cpp
Remove the now redundant TT prefetch call from Position::do_move.
[stockfish] / src / position.cpp
index b7baeb6b77d248128893fae25a411638d2805382..cbaa07e86e6c7925aa810347fc63688f63810252 100644 (file)
@@ -807,9 +807,6 @@ void Position::do_move(Move m, StateInfo& newSt, const CheckInfo& ci, bool moveI
       st->castlingRights &= ~cr;
   }
 
-  // Prefetch TT access as soon as we know the new hash key
-  prefetch((char*)TT.first_entry(k));
-
   // Move the piece. The tricky Chess960 castling is handled earlier
   if (type_of(m) != CASTLING)
       move_piece(from, to, us, pt);