From 4f4dc26097066dccc15b27ef8573e6e8c43a5be3 Mon Sep 17 00:00:00 2001 From: Dimo Markov Date: Fri, 14 Jun 2024 01:23:28 +0300 Subject: [PATCH] Build fix --- source/Common.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Common.hpp b/source/Common.hpp index c136b8f..f8b865c 100644 --- a/source/Common.hpp +++ b/source/Common.hpp @@ -588,8 +588,8 @@ namespace Langulus::SIMD #else // Grab the 32-bit low halves of 64-bit elements auto combined = _mm256_shuffle_ps( - _mm256_castsi256_ps(a.m), - _mm256_castsi256_ps(b.m), + _mm256_castsi256_ps(m), + _mm256_castsi256_ps(m), _MM_SHUFFLE(2, 0, 2, 0) ); @@ -610,8 +610,8 @@ namespace Langulus::SIMD #else // Grab the 32-bit low halves of 64-bit elements auto combined = _mm256_shuffle_ps( - _mm256_castsi256_ps(a.m), - _mm256_castsi256_ps(b.m), + _mm256_castsi256_ps(m), + _mm256_castsi256_ps(m), _MM_SHUFFLE(2, 0, 2, 0) );