X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=477fb392c6add636f01a46c7e0bf1b7ca51113c4;hp=e47e377538bbb6ba6a27c180c80f701e074c38f7;hb=481eda4ca0121cfa16f5a29f364ca30ee2852409;hpb=9a1d5f0f1d8a12a85b198688d4f1d636a146eb7a diff --git a/src/misc.cpp b/src/misc.cpp index e47e3775..477fb392 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -31,16 +31,16 @@ using namespace std; /// Version number. If Version is left empty, then Tag plus current -/// date (in the format YYMMDD) is used as a version number. +/// date, in the format DD-MM-YY, are used as a version number. static const string Version = ""; static const string Tag = ""; -/// engine_info() returns the full name of the current Stockfish version. -/// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when -/// the program was compiled) or "Stockfish ", depending -/// on whether Version is empty. +/// engine_info() returns the full name of the current Stockfish version. This +/// will be either "Stockfish DD-MM-YY" (where DD-MM-YY is the date when +/// the program was compiled) or "Stockfish ", depending on whether +/// Version is empty. const string engine_info(bool to_uci) { @@ -57,8 +57,8 @@ const string engine_info(bool to_uci) { { date >> month >> day >> year; - s << Tag << setfill('0') << " " << year.substr(2) - << setw(2) << (1 + months.find(month) / 4) << setw(2) << day; + s << Tag << string(Tag.empty() ? "" : " ") << setfill('0') << setw(2) << day + << "-" << setw(2) << (1 + months.find(month) / 4) << "-" << year.substr(2); } s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ") @@ -237,10 +237,8 @@ void prefetch(char* addr) { # if defined(__INTEL_COMPILER) || defined(_MSC_VER) _mm_prefetch(addr, _MM_HINT_T0); - _mm_prefetch(addr+64, _MM_HINT_T0); // 64 bytes ahead # else __builtin_prefetch(addr); - __builtin_prefetch(addr+64); # endif }