aboutsummaryrefslogtreecommitdiff
path: root/src/_trans_avx2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/_trans_avx2.c')
-rw-r--r--src/_trans_avx2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_trans_avx2.c b/src/_trans_avx2.c
index 29ee942..e80bf79 100644
--- a/src/_trans_avx2.c
+++ b/src/_trans_avx2.c
@@ -7,7 +7,7 @@ flipallcorners(cube_t c)
7 shright = _mm256_srli_si256(c, 1); 7 shright = _mm256_srli_si256(c, 1);
8 summed = _mm256_or_si256(shleft, shright); 8 summed = _mm256_or_si256(shleft, shright);
9 newco = _mm256_and_si256(summed, _co_avx2); 9 newco = _mm256_and_si256(summed, _co_avx2);
10 cleanco = _mm256_andnot_si256_(c, _co_avx2); 10 cleanco = _mm256_andnot_si256(c, _co_avx2);
11 ret = _mm256_and_si256(cleanco, newco); 11 ret = _mm256_and_si256(cleanco, newco);
12 12
13 return ret; 13 return ret;

Generated with cgit - Back to sebastiano.tronto.net