summaryrefslogtreecommitdiff
path: root/lib/libcrypto/whrlpool
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2016-09-04 14:06:47 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2016-09-04 14:06:47 +0000
commitd28ecd16fd85a3e067c0fe56f7ad6c9191d80ae2 (patch)
tree4eb9a8fc30a498effe200620712f86d3478e93f1 /lib/libcrypto/whrlpool
parent57f111c6572883810aeb572ff408ce7a877479eb (diff)
Less IA64.
ok deraadt@
Diffstat (limited to 'lib/libcrypto/whrlpool')
-rw-r--r--lib/libcrypto/whrlpool/wp_block.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/libcrypto/whrlpool/wp_block.c b/lib/libcrypto/whrlpool/wp_block.c
index 57f5b5df7a3..d8c1b89ba38 100644
--- a/lib/libcrypto/whrlpool/wp_block.c
+++ b/lib/libcrypto/whrlpool/wp_block.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wp_block.c,v 1.11 2016/09/04 13:39:48 jsing Exp $ */
+/* $OpenBSD: wp_block.c,v 1.12 2016/09/04 14:06:46 jsing Exp $ */
/**
* The Whirlpool hashing function.
*
@@ -73,14 +73,6 @@ typedef unsigned long long u64;
# if defined(__x86_64) || defined(__x86_64__)
# define ROTATE(a,n) ({ u64 ret; asm ("rolq %1,%0" \
: "=r"(ret) : "J"(n),"0"(a) : "cc"); ret; })
-# elif defined(__ia64) || defined(__ia64__)
-# if BYTE_ORDER == LITTLE_ENDIAN
-# define ROTATE(a,n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
- : "=r"(ret) : "r"(a),"M"(64-(n))); ret; })
-# else
-# define ROTATE(a,n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \
- : "=r"(ret) : "r"(a),"M"(n)); ret; })
-# endif
# endif
#endif