]> git.sesse.net Git - stockfish/blobdiff - src/main.cpp
Convert History table H in a local variable
[stockfish] / src / main.cpp
index 36534ae3d98b805e2bb3e34c957dfea3e029dbea..fc970a0e78d09b4c92a1b878ec99d673f1aabdfc 100644 (file)
@@ -1,7 +1,7 @@
 /*
   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
-  Copyright (C) 2008 Marco Costalba
+  Copyright (C) 2008-2009 Marco Costalba
 
   Stockfish is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -29,6 +29,7 @@
 #include <string>
 
 #include "benchmark.h"
+#include "bitcount.h"
 #include "misc.h"
 #include "uci.h"
 
@@ -74,8 +75,11 @@ int main(int argc, char *argv[]) {
   }
 
   // Print copyright notice
-  cout << engine_name() << ".  Copyright (C) "
-       << "2004-2008 Tord Romstad, Marco Costalba. " << endl;
+  cout << engine_name() << ". Copyright (C) "
+       << "2004-2009 Tord Romstad, Marco Costalba. " << endl;
+
+  if (CpuHasPOPCNT)
+      cout << "Good! CPU has hardware POPCNT. We will use it." << endl;
 
   // Enter UCI mode
   uci_main_loop();