]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Convert History table H in a local variable
[stockfish] / src / main.cpp
index 210b8363345ac58b77ae0d9dc81b3ff00d066617..fc970a0e78d09b4c92a1b878ec99d673f1aabdfc 100644 (file)
@@ -18,7 +18,7 @@
 */
 
 // To profile with callgrind uncomment following line
-#define USE_CALLGRIND
+//#define USE_CALLGRIND
 
 
 ////
@@ -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();