From: Tomas Mraz Date: Thu, 3 Nov 2022 13:01:56 +0000 (+0100) Subject: rsaz_exp_x2.c: Remove unused ALIGN64 macro X-Git-Tag: openssl-3.2.0-alpha1~1545 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b65d79d7132d6e46bfb385a76082f6502ef617b;p=thirdparty%2Fopenssl.git rsaz_exp_x2.c: Remove unused ALIGN64 macro Reviewed-by: Paul Dale Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/19597) --- diff --git a/crypto/bn/rsaz_exp_x2.c b/crypto/bn/rsaz_exp_x2.c index c3086402de4..6ef49ae1296 100644 --- a/crypto/bn/rsaz_exp_x2.c +++ b/crypto/bn/rsaz_exp_x2.c @@ -24,14 +24,6 @@ NON_EMPTY_TRANSLATION_UNIT # include # include -# if defined(__GNUC__) -# define ALIGN64 __attribute__((aligned(64))) -# elif defined(_MSC_VER) -# define ALIGN64 __declspec(align(64)) -# else -# define ALIGN64 -# endif - # define ALIGN_OF(ptr, boundary) \ ((unsigned char *)(ptr) + (boundary - (((size_t)(ptr)) & (boundary - 1))))