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:29:19 +0100
commit4b65d79d7132d6e46bfb385a76082f6502ef617b (patch)
tree9a5fc05fdb473e8213c043c29ac46b45e5692275 /crypto
parent9506a2e274c643b94a2c265019ea9288f99a521a (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)
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 c3086402de..6ef49ae129 100644
--- a/crypto/bn/rsaz_exp_x2.c
+++ b/crypto/bn/rsaz_exp_x2.c
@@ -24,14 +24,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))))