]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Print info about use of 64bit functions and hardware POPCNT
[stockfish] / src / main.cpp
index 9c8601148decb1fa1874418f0cd9f6cd631f48d8..fc970a0e78d09b4c92a1b878ec99d673f1aabdfc 100644 (file)
@@ -75,11 +75,11 @@ int main(int argc, char *argv[]) {
   }
 
   // Print copyright notice
-  cout << engine_name() << ".  Copyright (C) "
+  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;
+  if (CpuHasPOPCNT)
+      cout << "Good! CPU has hardware POPCNT. We will use it." << endl;
 
   // Enter UCI mode
   uci_main_loop();