rsaz_exp_x2.c: Remove unused ALIGN64 macro
[openssl.git] / 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))))