X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=e03a0e2fa7302fbe4c1b4fa418a4b3be2fc8adbb;hp=2970ac3b49c30c6ceb0aeda94b95836919eab715;hb=14f059072af34bc21b71ae7fc550f03b4a075b3b;hpb=47ee6d9fa4091aa05f6fedb62a2bb652b0422f08 diff --git a/src/misc.cpp b/src/misc.cpp index 2970ac3b..e03a0e2f 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -151,7 +151,7 @@ const string engine_name() { const string cpu64(CpuHas64BitPath ? " 64bit" : ""); if (!EngineVersion.empty()) - return AppName+ " " + EngineVersion + cpu64; + return AppName + " " + EngineVersion + cpu64; string date(__DATE__); // From compiler, format is "Sep 21 2008" string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"); @@ -292,6 +292,8 @@ int Bioskey() } } +#endif + /// prefetch() preloads the given address in L1/L2 cache. This is a non /// blocking function and do not stalls the CPU waiting for data to be /// loaded from RAM, that can be very slow. @@ -313,4 +315,3 @@ void prefetch(char* addr) { #endif -#endif