Merge branch 'dev'

This commit is contained in:
XMRig 2022-01-25 21:53:19 +07:00
commit 39609c9183
No known key found for this signature in database
GPG key ID: 446A53638BE94409
17 changed files with 158 additions and 47 deletions

View file

@ -808,7 +808,7 @@ inline void cryptonight_single_hash(const uint8_t *__restrict__ input, size_t si
int64_t d5;
# if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 8))
# if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 8)) || !defined(XMRIG_64_BIT)
d5 = d | 5;
# else
// Workaround for stupid GCC which converts to 32 bit before doing "| 5" and then converts back to 64 bit