mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Typo in crypto/bn/asm/x86_64.c, bn_div_words().
PR: 821
This commit is contained in:
parent
d4575825f1
commit
1751034669
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user