From 49f2bc922fa79fc243c8d9f71231e19811bfa439 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Thu, 3 Nov 2022 14:01:56 +0100 Subject: 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(-) (limited to 'crypto') diff --git a/crypto/bn/rsaz_exp_x2.c b/crypto/bn/rsaz_exp_x2.c index fb96d67743..00df79d8fb 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)))) -- cgit v1.2.3