1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-05-01 17:19:36 +00:00

Display NEON in compiler string

if NEON intrinsics are being used and USE_NEON is defined.

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

No functional change
This commit is contained in:
Daylen Yang 2020-08-14 19:53:46 -07:00 committed by Joost VandeVondele
parent cd0b8b4cf2
commit 8cf43c6317

View file

@ -242,6 +242,9 @@ const std::string compiler_info() {
#if defined(USE_MMX) #if defined(USE_MMX)
compiler += " MMX"; compiler += " MMX";
#endif #endif
#if defined(USE_NEON)
compiler += " NEON";
#endif
#if !defined(NDEBUG) #if !defined(NDEBUG)
compiler += " DEBUG"; compiler += " DEBUG";