From 1cc45c5fdcf4efd0e2252537c1aad7224ac6972d Mon Sep 17 00:00:00 2001 From: BenDroid Date: Sat, 3 Mar 2018 21:32:53 +0100 Subject: [PATCH] Additional arm fix --- src/crypto/CryptoNight_arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/CryptoNight_arm.h b/src/crypto/CryptoNight_arm.h index 75ba8386..b8093719 100644 --- a/src/crypto/CryptoNight_arm.h +++ b/src/crypto/CryptoNight_arm.h @@ -466,7 +466,7 @@ public: cx = soft_aesenc((uint32_t*)&l[idx & MASK], _mm_set_epi64x(ah, al)); } else { - cx = _mm_load_si128((__m128i *) &l0[idx0 & MASK]); + cx = _mm_load_si128((__m128i *) &l[idx & MASK]); # ifndef XMRIG_ARMv7 cx = vreinterpretq_m128i_u8(vaesmcq_u8(vaeseq_u8(cx, vdupq_n_u8(0)))) ^ _mm_set_epi64x(ah0, al0); # endif