]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Retire run-time detection of hardware POPCNT
[stockfish] / src / main.cpp
index 1a8309700555bfd61ef916fad97619d48d50386f..9b1b5ecfe4f373ce3fc6849cb64a0b5c86e481e0 100644 (file)
 #include <string>
 
 #include "bitboard.h"
-#include "evaluate.h"
+#include "misc.h"
 #include "position.h"
-#include "thread.h"
 #include "search.h"
-#include "ucioption.h"
+#include "thread.h"
 
 using namespace std;
 
@@ -44,11 +43,7 @@ int main(int argc, char* argv[]) {
   if (argc < 2)
   {
       cout << engine_name() << " by " << engine_authors() << endl;
-
-      if (CpuHasPOPCNT)
-          cout << "Good! CPU has hardware POPCNT." << endl;
-
-      uci_loop(); // Enter the UCI loop and wait for user input
+      uci_loop();
   }
   else if (string(argv[1]) == "bench")
       benchmark(argc, argv);