summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-11-03 14:01:56 +0100
committerTomas Mraz <tomas@openssl.org>2023-01-09 08:35:23 +0100
commit2a57a117a2e5b433a93ae6c15686d9751b9dc527 (patch)
tree9f360c1d76c0817564c27236e9992f8ea8c19ad2 /crypto
parentdcde8ea8c4696bbf800a4f96e62ab38da1c9b236 (diff)
rsaz_exp_x2.c: Remove unused ALIGN64 macro
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19597) (cherry picked from commit 4b65d79d7132d6e46bfb385a76082f6502ef617b)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/rsaz_exp_x2.c8
1 files changed, 0 insertions, 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 <assert.h>
# include <string.h>
-# 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))))