X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmain.cpp;h=210b8363345ac58b77ae0d9dc81b3ff00d066617;hp=e009fd964fd674008c0b4b1a4ca9649c115b56bd;hb=0228ff9ca04fad817de5f1e7a7890908a3b0013e;hpb=5c81602d14539f8259a715477315e28b5de7cb54 diff --git a/src/main.cpp b/src/main.cpp index e009fd96..210b8363 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" @@ -77,6 +78,9 @@ int main(int argc, char *argv[]) { 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; + // Enter UCI mode uci_main_loop(); return 0;