summaryrefslogtreecommitdiff
path: root/cipher/whirlpool-sse2-amd64.S
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/whirlpool-sse2-amd64.S')
-rw-r--r--cipher/whirlpool-sse2-amd64.S13
1 files changed, 10 insertions, 3 deletions
diff --git a/cipher/whirlpool-sse2-amd64.S b/cipher/whirlpool-sse2-amd64.S
index d0bcf2d9..e98b831c 100644
--- a/cipher/whirlpool-sse2-amd64.S
+++ b/cipher/whirlpool-sse2-amd64.S
@@ -20,7 +20,8 @@
#ifdef __x86_64
#include <config.h>
-#if defined(HAVE_COMPATIBLE_GCC_AMD64_PLATFORM_AS) && defined(USE_WHIRLPOOL)
+#if (defined(HAVE_COMPATIBLE_GCC_AMD64_PLATFORM_AS) || \
+ defined(HAVE_COMPATIBLE_GCC_WIN64_PLATFORM_AS)) && defined(USE_WHIRLPOOL)
#ifdef __PIC__
# define RIP %rip
@@ -28,6 +29,12 @@
# define RIP
#endif
+#ifdef HAVE_COMPATIBLE_GCC_AMD64_PLATFORM_AS
+# define ELF(...) __VA_ARGS__
+#else
+# define ELF(...) /*_*/
+#endif
+
.text
/* look-up table offsets on RTAB */
@@ -157,7 +164,7 @@
.align 8
.globl _gcry_whirlpool_transform_amd64
-.type _gcry_whirlpool_transform_amd64,@function;
+ELF(.type _gcry_whirlpool_transform_amd64,@function;)
_gcry_whirlpool_transform_amd64:
/* input:
@@ -329,7 +336,7 @@ _gcry_whirlpool_transform_amd64:
.Lskip:
movl $(STACK_MAX + 8), %eax;
ret;
-.size _gcry_whirlpool_transform_amd64,.-_gcry_whirlpool_transform_amd64;
+ELF(.size _gcry_whirlpool_transform_amd64,.-_gcry_whirlpool_transform_amd64;)
#endif
#endif