From: Andy Polyakov Date: Sat, 7 Feb 2004 09:46:47 +0000 (+0000) Subject: Typo in crypto/bn/asm/x86_64.c, bn_div_words(). X-Git-Tag: OpenSSL_0_9_7d~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ad5550209241f4c01881c1b786eabca99c696031;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");