Remove IRIX_CC_BUG workaround.
authormiod <miod@openbsd.org>
Wed, 23 Apr 2014 19:16:15 +0000 (19:16 +0000)
committermiod <miod@openbsd.org>
Wed, 23 Apr 2014 19:16:15 +0000 (19:16 +0000)
lib/libcrypto/bn/bn_add.c
lib/libssl/src/crypto/bn/bn_add.c

index 9405163..b366159 100644 (file)
@@ -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
index 9405163..b366159 100644 (file)
@@ -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