1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 09:13:08 +00:00

Add temporary debug info on POPCNT support

To be removed before to release.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2009-05-21 16:42:07 +02:00
parent e7d3a006cd
commit 0228ff9ca0

View file

@ -29,6 +29,7 @@
#include <string> #include <string>
#include "benchmark.h" #include "benchmark.h"
#include "bitcount.h"
#include "misc.h" #include "misc.h"
#include "uci.h" #include "uci.h"
@ -77,6 +78,9 @@ int main(int argc, char *argv[]) {
cout << engine_name() << ". Copyright (C) " cout << engine_name() << ". Copyright (C) "
<< "2004-2009 Tord Romstad, Marco Costalba. " << endl; << "2004-2009 Tord Romstad, Marco Costalba. " << endl;
// FIXME ONLY FOR DEBUG, REMOVE BEFORE RELEASE
cout << "Support for POPCNT is " << CpuHasPOPCNT << endl;
// Enter UCI mode // Enter UCI mode
uci_main_loop(); uci_main_loop();
return 0; return 0;