summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-02-07 09:51:28 +0000
committerAndy Polyakov <appro@openssl.org>2004-02-07 09:51:28 +0000
commit1751034669af1e687f4fefeff0bbbf98b4adb05a (patch)
treee0edb1f3700a511f148d679c7fc986072e002458 /crypto
parentd4575825f1ded552a32c70f8d5e62668978eda91 (diff)
Typo in crypto/bn/asm/x86_64.c, bn_div_words().
PR: 821
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/asm/x86_64-gcc.c2
1 files changed, 1 insertions, 1 deletions
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");