From b14d0e05907b8dd5b107f4ca18ab2830d5c52cff Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Wed, 26 May 1999 19:59:36 +0000 Subject: [PATCH] Circument egcs bug. Submitted by: Andy Polyakov --- crypto/bn/bn_asm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.34.1