summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-12-14 15:28:10 +0000
committerUlf Möller <ulf@openssl.org>1999-12-14 15:28:10 +0000
commit3b14cb717defe41cebbe5524ff9d5ae84260a005 (patch)
tree1de0f725278338678befe5c720f3f12d021fb1f9 /crypto/bn/bn_div.c
parent55f30198ad4314baaa276e1a1156c046d5ad823f (diff)
Solaris x86 assembler problem is already addressed in ./config
(bug reports keep coming in because that was still missing in 0.9.4)
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index 36beea2296..830da87f58 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -207,7 +207,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
#if !defined(NO_ASM) && !defined(PEDANTIC)
# if defined(__GNUC__) && __GNUC__>=2
-# if defined(__i386) && !defined(__sun)
+# if defined(__i386)
/*
* There were two reasons for implementing this template:
* - GNU C generates a call to a function (__udivdi3 to be exact)