head	1.2;
access;
symbols
	RELEASE_4_9_0:1.1
	RELEASE_5_1_0:1.1
	RELEASE_4_8_0:1.1
	RELEASE_5_0_0:1.1
	RELEASE_4_7_0:1.1
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1
	RELEASE_4_5_0:1.1
	RELEASE_4_4_0:1.1
	RELEASE_4_3_0:1.1
	RELEASE_4_2_0:1.1
	RELEASE_4_1_1:1.1
	RELEASE_4_1_0:1.1
	RELEASE_3_5_0:1.1
	RELEASE_4_0_0:1.1;
locks; strict;
comment	@# @;


1.2
date	2003.11.08.11.48.04;	author markm;	state dead;
branches;
next	1.1;

1.1
date	2000.01.09.20.37.05;	author obrien;	state Exp;
branches;
next	;


desc
@@


1.2
log
@This software is old and unmaintained. Remove.
@
text
@--- lib/pgp/random/pgpRndPool.c.orig	Sat Aug  9 14:45:13 1997
+++ lib/pgp/random/pgpRndPool.c	Sun Jan  9 12:23:07 2000
@@@@ -292,13 +292,14 @@@@
 * safely underestimated if desired, if a 64-bit product is difficult to
 * compute.
 *
-* The simplest snd safest definition is
+* The simplest and safest definition is
 * #define UMULH_32(r,a,b) (r) = 0
 */
 #ifndef UMULH_32
 #if defined(__GNUC__) && defined(__i386__)
 /* Inline asm goodies */
-#define UMULH_32(r,a,b) __asm__("mull %2" : "=d"(r) : "%a"(a), "mr"(b) : "ax")
+/* WAS: #define UMULH_32(r,a,b) __asm__("mull %2" : "=d"(r) : "%a"(a), "mr"(b) : "ax") */
+#define UMULH_32(r,a,b) __asm__("mull %2" : "=d"(r), "=a"(a)/*unused, but needed due to new clobberlist restrictions*/ : "%1"(a), "mr"(b))
 #elif HAVE64
 #define UMULH_32(r,a,b) ((r) = (word32)((word64)(a) * (b) >> 32))
 #else
@


1.1
log
@Make the inline ASM gcc 2.95 clean.
@
text
@@

