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:
parent
65ece7d985
commit
002a50457c
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue