From: Marco Costalba Date: Thu, 21 May 2009 14:42:07 +0000 (+0200) Subject: Add temporary debug info on POPCNT support X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=0228ff9ca04fad817de5f1e7a7890908a3b0013e Add temporary debug info on POPCNT support To be removed before to release. Signed-off-by: Marco Costalba --- 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;