summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2014-04-23 19:16:16 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2014-04-23 19:16:16 +0000
commit1260a389b8c53e8e4133b75b1ba43696bf0293a3 (patch)
treeb5b887d8057e9258aaa817c4e6dfae7bd282056c /lib/libcrypto
parent19bfaff0c4c308053c646a664f4237aa00fe4353 (diff)
Remove IRIX_CC_BUG workaround.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/bn/bn_add.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libcrypto/bn/bn_add.c b/lib/libcrypto/bn/bn_add.c
index 9405163706a..b36615910ce 100644
--- a/lib/libcrypto/bn/bn_add.c
+++ b/lib/libcrypto/bn/bn_add.c
@@ -168,9 +168,6 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
int max,min,dif;
register BN_ULONG t1,t2,*ap,*bp,*rp;
int i,carry;
-#if defined(IRIX_CC_BUG) && !defined(LINT)
- int dummy;
-#endif
bn_check_top(a);
bn_check_top(b);
@@ -207,9 +204,6 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
carry=(t1 < t2);
t1=(t1-t2)&BN_MASK2;
}
-#if defined(IRIX_CC_BUG) && !defined(LINT)
- dummy=t1;
-#endif
*(rp++)=t1&BN_MASK2;
}
#else