From ac24f39e336b0d24c89f906d0d4a7532ffb2d95d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 21 Jan 2019 00:56:21 -0500 Subject: [PATCH] Fix compile on AIX --- gf2n_simd.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/gf2n_simd.cpp b/gf2n_simd.cpp index ceca9481..6a1bd896 100644 --- a/gf2n_simd.cpp +++ b/gf2n_simd.cpp @@ -590,8 +590,6 @@ GF2NT_233_Square_Reduce_POWER8(const word* pA, word* pC) const uint8x16_p m = (uint8x16_p)VecLoad(mb); a0 = VecPermute(a0, m); a1 = VecPermute(a1, m); - b0 = VecPermute(b0, m); - b1 = VecPermute(b1, m); #endif uint64x2_p c0, c1, c2, c3;