mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
refactor: Drop unneeded workarounds aimed to silence unused warning
All of the touched symbols are indeed used regardless of any macros.
This commit is contained in:
parent
0baf6aded5
commit
55e0fc8df9
1 changed files with 1 additions and 5 deletions
|
@ -590,10 +590,6 @@ std::string SHA256AutoDetect()
|
|||
bool have_x86_shani = false;
|
||||
bool enabled_avx = false;
|
||||
|
||||
(void)AVXEnabled;
|
||||
(void)have_sse4;
|
||||
(void)have_avx;
|
||||
(void)have_xsave;
|
||||
(void)have_avx2;
|
||||
(void)have_x86_shani;
|
||||
(void)enabled_avx;
|
||||
|
@ -641,7 +637,7 @@ std::string SHA256AutoDetect()
|
|||
ret += ",avx2(8way)";
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
#endif // defined(USE_ASM) && defined(HAVE_GETCPUID)
|
||||
|
||||
#if defined(ENABLE_ARM_SHANI) && !defined(BUILD_BITCOIN_INTERNAL)
|
||||
bool have_arm_shani = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue