From 7ab75751cd751bd56c9e824954e01b46fbca254a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 20 Jan 2019 23:44:01 -0500 Subject: [PATCH] Clear unused variable warning under Visual Studio --- gf2n.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gf2n.cpp b/gf2n.cpp index 996f7e90..c965dbb5 100644 --- a/gf2n.cpp +++ b/gf2n.cpp @@ -1027,7 +1027,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const const word* pA = a.reg.begin(); word* pR = result.reg.begin(); - GF2NT_233_Multiply_Reduce(pA, pA, pR); + GF2NT_233_Multiply_Reduce_CLMUL(pA, pA, pR); return result; } else @@ -1040,7 +1040,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const const word* pA = a.reg.begin(); word* pR = result.reg.begin(); - GF2NT_233_Multiply_Reduce(pA, pA, pR); + GF2NT_233_Multiply_Reduce_ARMv8(pA, pA, pR); return result; } else @@ -1053,7 +1053,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const const word* pA = a.reg.begin(); word* pR = result.reg.begin(); - GF2NT_233_Multiply_Reduce(pA, pA, pR); + GF2NT_233_Multiply_Reduce_POWER8(pA, pA, pR); return result; } else