1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-13 04:29:15 +00:00

Identify NEON_DOTPROD in compiler_info()

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

No functional change
This commit is contained in:
Niklas Fiekas 2023-07-29 14:34:58 +00:00 committed by Stéphane Nicolet
parent 65ece7d985
commit 002a50457c

View 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