Guard CPU_ProbeARMv7 with CRYPTOPP_BOOL_ARM32 (GH #844)

We make these queries available on all platforms so folks don't need to guard code.
This commit is contained in:
Jeffrey Walton 2019-05-20 23:33:06 -04:00
parent c456d6aa69
commit 40251d9b7f
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -114,11 +114,10 @@ bool CPU_ProbeARMv7()
sigprocmask(SIG_SETMASK, (sigset_t*)&oldMask, NULLPTR);
signal(SIGILL, oldHandler);
return result;
# else
return false;
# endif
#else
return false;
#endif // CRYPTOPP_ARM_NEON_AVAILABLE
#endif // CRYPTOPP_BOOL_ARM32
}
bool CPU_ProbeNEON()