diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-02-28 15:05:01 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-02-28 15:05:01 +0100 |
commit | 56c7754cab3da9745e52e36b0bf998f8356fd6d5 (patch) | |
tree | 2662cabb231e7746ad33b8d55e90dbf4b2add3d2 /crypto/bn/bn_div.c | |
parent | Fix error code function name mismatches in GOST engine, rebuild errors. (diff) | |
download | openssl-56c7754cab3da9745e52e36b0bf998f8356fd6d5.tar.xz openssl-56c7754cab3da9745e52e36b0bf998f8356fd6d5.zip |
Avoid warnings.
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r-- | crypto/bn/bn_div.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index 8655eb118e..8adf21430e 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -325,7 +325,7 @@ X) -> 0x%08X\n", t2 -= d1; } #else /* !BN_LLONG */ - BN_ULONG t2l,t2h,ql,qh; + BN_ULONG t2l,t2h; q=bn_div_words(n0,n1,d0); #ifdef BN_DEBUG_LEVITTE @@ -343,9 +343,12 @@ X) -> 0x%08X\n", t2l = d1 * q; t2h = BN_UMULT_HIGH(d1,q); #else + { + BN_ULONG ql, qh; t2l=LBITS(d1); t2h=HBITS(d1); ql =LBITS(q); qh =HBITS(q); mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */ + } #endif for (;;) @@ -549,7 +552,7 @@ X) -> 0x%08X\n", t2 -= d1; } #else /* !BN_LLONG */ - BN_ULONG t2l,t2h,ql,qh; + BN_ULONG t2l,t2h; q=bn_div_words(n0,n1,d0); #ifdef BN_DEBUG_LEVITTE @@ -567,9 +570,12 @@ X) -> 0x%08X\n", t2l = d1 * q; t2h = BN_UMULT_HIGH(d1,q); #else + { + BN_ULONG ql, qh; t2l=LBITS(d1); t2h=HBITS(d1); ql =LBITS(q); qh =HBITS(q); mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */ + } #endif for (;;) |