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:32:34 +0100
commit49f2bc922fa79fc243c8d9f71231e19811bfa439 (patch)
tree05cca65a9d89b4e32647904e5935ba4d0c04e602 /crypto
parentdf073dd603cedfa3599ded07c3fefe3f166d5808 (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 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 <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))))