From: Andy Polyakov Date: Sat, 7 Feb 2004 09:51:28 +0000 (+0000) Subject: Typo in crypto/bn/asm/x86_64.c, bn_div_words(). X-Git-Tag: LEVITTE_before_const~35 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1751034669af1e687f4fefeff0bbbf98b4adb05a;p=oweals%2Fopenssl.git Typo in crypto/bn/asm/x86_64.c, bn_div_words(). PR: 821 --- diff --git a/crypto/bn/asm/x86_64-gcc.c b/crypto/bn/asm/x86_64-gcc.c index b97b394661..450e8e4322 100644 --- a/crypto/bn/asm/x86_64-gcc.c +++ b/crypto/bn/asm/x86_64-gcc.c @@ -142,7 +142,7 @@ void bn_sqr_words(BN_ULONG *r, BN_ULONG *a, int n) BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d) { BN_ULONG ret,waste; - asm ("divq %3" + asm ("divq %4" : "=a"(ret),"=d"(waste) : "a"(l),"d"(h),"g"(d) : "cc");