projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
cd0b8b4
)
Display NEON in compiler string
author
Daylen Yang
<services@daylenyang.com>
Sat, 15 Aug 2020 02:53:46 +0000 (19:53 -0700)
committer
Joost 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
patch
|
blob
|
history
diff --git
a/src/misc.cpp
b/src/misc.cpp
index
1cee472
..
459ea10
100644
(file)
--- a/
src/misc.cpp
+++ b/
src/misc.cpp
@@
-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";