]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
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:29:19 +0000 (08:29 +0100)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19597)

crypto/bn/rsaz_exp_x2.c

index c3086402de4c033c2c53ad5c59bab371da4cbdd7..6ef49ae129686e9de6162869661c57fa99cecfda 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))))