]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Add temporary debug info on POPCNT support
[stockfish] / src / main.cpp
index 9198620660a6e2b731988abe4f9f19f773edaba7..210b8363345ac58b77ae0d9dc81b3ff00d066617 100644 (file)
@@ -29,6 +29,7 @@
 #include <string>
 
 #include "benchmark.h"
+#include "bitcount.h"
 #include "misc.h"
 #include "uci.h"
 
@@ -77,6 +78,9 @@ int main(int argc, char *argv[]) {
   cout << engine_name() << ".  Copyright (C) "
        << "2004-2009 Tord Romstad, Marco Costalba. " << endl;
 
+  // FIXME ONLY FOR DEBUG, REMOVE BEFORE RELEASE
+  cout << "Support for POPCNT is " << CpuHasPOPCNT << endl;
+
   // Enter UCI mode
   uci_main_loop();
   return 0;