Commit cbdda5cc authored by Andy Polyakov's avatar Andy Polyakov
Browse files

Fix for "shift count too large" when compiling for hpux-parisc2 and

irix-mips. The bug was introduced with accelerated support for x86_64.
My fault! Fixed now.
parent 4e356d98
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -368,7 +368,7 @@ struct bignum_ctx
	lt=(bl)*(lt); \
	m1=(bl)*(ht); \
	ht =(bh)*(ht); \
	m=(m+m1)&BN_MASK2; if (m < m1) ht+=L2HBITS(1L); \
	m=(m+m1)&BN_MASK2; if (m < m1) ht+=L2HBITS((BN_ULONG)1); \
	ht+=HBITS(m); \
	m1=L2HBITS(m); \
	lt=(lt+m1)&BN_MASK2; if (lt < m1) ht++; \