]> git.sesse.net Git - stockfish/blobdiff - src/pawns.cpp
Retire run-time detection of hardware POPCNT
[stockfish] / src / pawns.cpp
index 2906b0453b3c8508ddeb3ce129a00152d9a5b1cd..c652b371172560d5996ffee229f82a1b47338494 100644 (file)
@@ -116,7 +116,7 @@ template<Color Us>
 Score PawnInfoTable::evaluate_pawns(const Position& pos, Bitboard ourPawns,
                                     Bitboard theirPawns, PawnInfo* pi) {
 
-  const BitCountType Max15 = CpuIs64Bit ? CNT64_MAX15 : CNT32_MAX15;
+  const BitCountType Max15 = Is64Bit ? CNT64_MAX15 : CNT32_MAX15;
   const Color Them = (Us == WHITE ? BLACK : WHITE);
 
   Bitboard b;