Circument egcs bug.

Submitted by: Andy Polyakov <appro@fy.chalmers.se>
This commit is contained in:
Bodo Möller 1999-05-26 19:59:36 +00:00
parent f3c751067a
commit b14d0e0590

View File

@ -93,7 +93,8 @@ BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w)
bn_check_num(num);
if (num <= 0) return(c1);
for (;;)
/* for (;;) */
while (1) /* circumvent egcs-1.1.2 bug */
{
mul(rp[0],ap[0],w,c1);
if (--num == 0) break;