X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmain.cpp;h=fc970a0e78d09b4c92a1b878ec99d673f1aabdfc;hb=8bec65029d6ac3b22b956cfd820ec754420052df;hp=e009fd964fd674008c0b4b1a4ca9649c115b56bd;hpb=5c81602d14539f8259a715477315e28b5de7cb54;p=stockfish diff --git a/src/main.cpp b/src/main.cpp index e009fd96..fc970a0e 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,6 +29,7 @@ #include #include "benchmark.h" +#include "bitcount.h" #include "misc.h" #include "uci.h" @@ -74,9 +75,12 @@ 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; + if (CpuHasPOPCNT) + cout << "Good! CPU has hardware POPCNT. We will use it." << endl; + // Enter UCI mode uci_main_loop(); return 0;