From 2a57a117a2e5b433a93ae6c15686d9751b9dc527 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 3 Nov 2022 14:01:56 +0100 Subject: [PATCH] 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) (cherry picked from commit 4b65d79d7132d6e46bfb385a76082f6502ef617b) --- crypto/bn/rsaz_exp_x2.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/crypto/bn/rsaz_exp_x2.c b/crypto/bn/rsaz_exp_x2.c index a29e88c709..665370d6f2 100644 --- a/crypto/bn/rsaz_exp_x2.c +++ b/crypto/bn/rsaz_exp_x2.c @@ -23,14 +23,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)))) -- 2.34.1