diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-23 19:20:37 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-23 19:20:37 +0000 |
commit | 35e670bfb087283cb16fe574e8deb0b2a373be16 (patch) | |
tree | f7409827efa2de9740a6472ac6a1ca48656dabbd /lib | |
parent | ae89e0ddf839d86d793188a2cc4cef3900222b6f (diff) |
One last Dec C tentacle on alpha.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/bn/bn_lcl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libssl/src/crypto/bn/bn_lcl.h b/lib/libssl/src/crypto/bn/bn_lcl.h index 22b4d17eb64..e46cbc2ef85 100644 --- a/lib/libssl/src/crypto/bn/bn_lcl.h +++ b/lib/libssl/src/crypto/bn/bn_lcl.h @@ -235,10 +235,7 @@ extern "C" { * <appro@fy.chalmers.se> */ # if defined(__alpha) && (defined(SIXTY_FOUR_BIT_LONG) || defined(SIXTY_FOUR_BIT)) -# if defined(__DECC) -# include <c_asm.h> -# define BN_UMULT_HIGH(a,b) (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b)) -# elif defined(__GNUC__) && __GNUC__>=2 +# if defined(__GNUC__) && __GNUC__>=2 # define BN_UMULT_HIGH(a,b) ({ \ register BN_ULONG ret; \ asm ("umulh %1,%2,%0" \ |