From d26b2e6fd692d3ce1e2aca71dc0cff3be3111ae9 Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Wed, 30 May 2018 20:55:42 +0200 Subject: remove definition of `_mm256_set_m128i` The define of `_mm256_set_m128i` is not needed and avoid intel compiler throws a warning about it. --- xmrstak/backend/cpu/crypto/cryptonight_aesni.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmrstak/backend') diff --git a/xmrstak/backend/cpu/crypto/cryptonight_aesni.h b/xmrstak/backend/cpu/crypto/cryptonight_aesni.h index f06ae4e..e15c474 100644 --- a/xmrstak/backend/cpu/crypto/cryptonight_aesni.h +++ b/xmrstak/backend/cpu/crypto/cryptonight_aesni.h @@ -28,7 +28,7 @@ static inline uint64_t _umul128(uint64_t a, uint64_t b, uint64_t* hi) *hi = r >> 64; return (uint64_t)r; } -#define _mm256_set_m128i(v0, v1) _mm256_insertf128_si256(_mm256_castsi128_si256(v1), (v0), 1) + #else #include #endif // __GNUC__ -- cgit v1.1