diff --git a/src/main.cpp b/src/main.cpp index 91986206..210b8363 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" @@ -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;