]> git.sesse.net Git - stockfish/commitdiff
Identify NEON_DOTPROD in compiler_info()
authorNiklas Fiekas <niklas.fiekas@backscattering.de>
Sat, 29 Jul 2023 14:34:58 +0000 (14:34 +0000)
committerStéphane Nicolet <cassio@free.fr>
Sun, 6 Aug 2023 19:14:39 +0000 (21:14 +0200)
closes https://github.com/official-stockfish/Stockfish/pull/4712

No functional change

src/misc.cpp

index f1554060d5ea76c50f20d6e20d3a22e3a88429e4..29ef757e9386e2f39e654de922cf3391755efc17 100644 (file)
@@ -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