diff options
author | 2014-04-23 19:20:36 +0000 | |
---|---|---|
committer | 2014-04-23 19:20:36 +0000 | |
commit | 3ad3376d9d98305fdef778fa202fbe5e31af0bb4 (patch) | |
tree | 64299040992ece3202cae4aa5636b7a1f13eda1f /lib/libssl/src | |
parent | When I grow up, I want to write workaround for long long multiplications (diff) | |
download | wireguard-openbsd-3ad3376d9d98305fdef778fa202fbe5e31af0bb4.tar.xz wireguard-openbsd-3ad3376d9d98305fdef778fa202fbe5e31af0bb4.zip |
One last Dec C tentacle on alpha.
Diffstat (limited to 'lib/libssl/src')
-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" \ |