rsaz_exp_x2.c: Remove unused ALIGN64 macro
authorTomas Mraz <tomas@openssl.org>
Thu, 3 Nov 2022 13:01:56 +0000 (14:01 +0100)
committerTomas Mraz <tomas@openssl.org>
Mon, 9 Jan 2023 07:32:34 +0000 (08:32 +0100)
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)

crypto/bn/rsaz_exp_x2.c

index fb96d677433d7561344b9048c118e351bb24d8a9..00df79d8fb73c4837d4b65f42dbbb2014a0432c1 100644 (file)
@@ -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))))