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:35:23 +0000 (08:35 +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 a29e88c709733bd077002308ab70ae43e2bf479a..665370d6f2e50d0df51acba11e48439f6b3039d6 100644 (file)
@@ -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))))