summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_add.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-09-25 14:43:24 -0400
committerRich Salz <rsalz@openssl.org>2014-09-25 14:43:24 -0400
commit3d81ec5b92e1141762eb72caf2aeb9b2cd019a78 (patch)
treea86ce4cb0e7e1641b42c63f6e4c446248f8ac747 /crypto/bn/bn_add.c
parent008bef521c94e01cf1155fd313c4560b741e67bb (diff)
Remove #ifdef's for IRIX_CC_BUG
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/bn/bn_add.c')
-rw-r--r--crypto/bn/bn_add.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/bn/bn_add.c b/crypto/bn/bn_add.c
index 3835a8428c..caf3575915 100644
--- a/crypto/bn/bn_add.c
+++ b/crypto/bn/bn_add.c
@@ -171,9 +171,6 @@ int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
register BN_ULONG t1,t2,*rp;
register const BN_ULONG *ap,*bp;
int i,carry;
-#if defined(IRIX_CC_BUG) && !defined(LINT)
- int dummy;
-#endif
bn_check_top(a);
bn_check_top(b);
@@ -210,9 +207,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