]> git.sesse.net Git - stockfish/blobdiff - src/misc.cpp
Identify NEON_DOTPROD in compiler_info()
[stockfish] / src / misc.cpp
index bbfa40617db3d8dc1ac3405c400367fecc51964d..29ef757e9386e2f39e654de922cf3391755efc17 100644 (file)
@@ -73,7 +73,7 @@ namespace Stockfish {
 namespace {
 
 /// Version number or dev.
-constexpr string_view version = "16";
+constexpr string_view version = "dev";
 
 /// Our fancy logging facility. The trick here is to replace cin.rdbuf() and
 /// cout.rdbuf() with two Tie objects that tie cin and cout to a file stream. We
@@ -280,7 +280,9 @@ std::string compiler_info() {
   #if defined(USE_MMX)
     compiler += " MMX";
   #endif
-  #if defined(USE_NEON)
+  #if defined(USE_NEON_DOTPROD)
+    compiler += " NEON_DOTPROD";
+  #elif defined(USE_NEON)
     compiler += " NEON";
   #endif