From: Bodo Möller Date: Wed, 26 May 1999 19:59:36 +0000 (+0000) Subject: Circument egcs bug. X-Git-Tag: OpenSSL_0_9_3a~15 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=b14d0e05907b8dd5b107f4ca18ab2830d5c52cff;ds=sidebyside Circument egcs bug. Submitted by: Andy Polyakov --- diff --git a/crypto/bn/bn_asm.c b/crypto/bn/bn_asm.c index 05ede3b250..7f4c3ff3b2 100644 --- a/crypto/bn/bn_asm.c +++ b/crypto/bn/bn_asm.c @@ -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;