Remove unused variables

This commit is contained in:
Frank Denis
2021-11-08 22:00:33 +01:00
parent 7052e4733f
commit b65f8fdf4f
2 changed files with 1 additions and 2 deletions
@@ -30,7 +30,7 @@
static inline void
crypto_aead_aegis128l_update(__m128i *const state, const __m128i d1, const __m128i d2)
{
__m128i tmp, tmp2;
__m128i tmp;
tmp = state[7];
state[7] = _mm_aesenc_si128(state[6], state[7]);
@@ -2645,7 +2645,6 @@ ge25519_clear_cofactor(ge25519_p3 *p3)
static void
ge25519_elligator2(fe25519 x, fe25519 y, const fe25519 r, int *notsquare_p)
{
fe25519 e;
fe25519 gx1;
fe25519 rr2;
fe25519 x2, x3, negx;