Clear unused variable warning under Visual Studio

pull/795/head
Jeffrey Walton 2019-01-20 23:44:01 -05:00
parent fbf0f62f4b
commit 7ab75751cd
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 3 deletions

View File

@ -1027,7 +1027,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const
const word* pA = a.reg.begin(); const word* pA = a.reg.begin();
word* pR = result.reg.begin(); word* pR = result.reg.begin();
GF2NT_233_Multiply_Reduce(pA, pA, pR); GF2NT_233_Multiply_Reduce_CLMUL(pA, pA, pR);
return result; return result;
} }
else else
@ -1040,7 +1040,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const
const word* pA = a.reg.begin(); const word* pA = a.reg.begin();
word* pR = result.reg.begin(); word* pR = result.reg.begin();
GF2NT_233_Multiply_Reduce(pA, pA, pR); GF2NT_233_Multiply_Reduce_ARMv8(pA, pA, pR);
return result; return result;
} }
else else
@ -1053,7 +1053,7 @@ const GF2NT::Element& GF2NT233::Square(const Element &a) const
const word* pA = a.reg.begin(); const word* pA = a.reg.begin();
word* pR = result.reg.begin(); word* pR = result.reg.begin();
GF2NT_233_Multiply_Reduce(pA, pA, pR); GF2NT_233_Multiply_Reduce_POWER8(pA, pA, pR);
return result; return result;
} }
else else