]> git.sesse.net Git - stockfish/commitdiff
Display NEON in compiler string
authorDaylen Yang <services@daylenyang.com>
Sat, 15 Aug 2020 02:53:46 +0000 (19:53 -0700)
committerJoost VandeVondele <Joost.VandeVondele@gmail.com>
Sun, 16 Aug 2020 19:10:26 +0000 (21:10 +0200)
if NEON intrinsics are being used and USE_NEON is defined.

closes https://github.com/official-stockfish/Stockfish/pull/3008

No functional change

src/misc.cpp

index 1cee4726f3b1a6d7dbb76c694775ef35ddc16af9..459ea10035b6ae9e6a4de47e01a60f2dec596865 100644 (file)
@@ -242,6 +242,9 @@ const std::string compiler_info() {
   #if defined(USE_MMX)
     compiler += " MMX";
   #endif
+  #if defined(USE_NEON)
+    compiler += " NEON";
+  #endif
 
   #if !defined(NDEBUG)
     compiler += " DEBUG";