From c0150ed4bdb86f64f0fa668331226b744590f6cc Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 14 Dec 2018 02:00:55 -0500 Subject: [PATCH] Fix placement of align attribute for 32-bit --- donna_32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/donna_32.cpp b/donna_32.cpp index b6c8fac3..cefb0605 100644 --- a/donna_32.cpp +++ b/donna_32.cpp @@ -401,7 +401,7 @@ curve25519_swap_conditional(bignum25519 x, bignum25519 qpx, word32 iswap) { */ void curve25519_pow_two5mtwo0_two250mtwo0(bignum25519 b) { - bignum25519 ALIGN(16) t0,c; + ALIGN(16) bignum25519 t0,c; /* 2^5 - 2^0 */ /* b */ /* 2^10 - 2^5 */ curve25519_square_times(t0, b, 5);