X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmain.cpp;h=94ee076be147cf5513950a57fe6f89eb2b183bd8;hb=b45936a8c781083ada45dc5b503a5ea27d4cf059;hp=9198620660a6e2b731988abe4f9f19f773edaba7;hpb=3376c68f4bb83dc9fd874eb9d710dab09609ae54;p=stockfish diff --git a/src/main.cpp b/src/main.cpp index 91986206..94ee076b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,7 +18,7 @@ */ // To profile with callgrind uncomment following line -#define USE_CALLGRIND +//#define USE_CALLGRIND //// @@ -29,6 +29,7 @@ #include #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-2009 Tord Romstad, Marco Costalba. " << endl; + cout << engine_name() + << ". By Tord Romstad, Marco Costalba, Joona Kiiski." << endl; + + if (CpuHasPOPCNT) + cout << "Good! CPU has hardware POPCNT. We will use it." << endl; // Enter UCI mode uci_main_loop();