From 392813b7d9ed86b80127b58bc6e108cc28530eca Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 4 Sep 2016 14:06:46 +0000 Subject: Less IA64. ok deraadt@ --- src/lib/libcrypto/whrlpool/wp_block.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/lib/libcrypto/whrlpool') diff --git a/src/lib/libcrypto/whrlpool/wp_block.c b/src/lib/libcrypto/whrlpool/wp_block.c index 57f5b5df7a..d8c1b89ba3 100644 --- a/src/lib/libcrypto/whrlpool/wp_block.c +++ b/src/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 -- cgit v1.2.3-55-g6feb