diff options
author | markus <> | 2004-04-07 20:42:07 +0000 |
---|---|---|
committer | markus <> | 2004-04-07 20:42:07 +0000 |
commit | a4ab668c13b41cdc59a6f7dc9cf6c88c39d2466b (patch) | |
tree | b7f3574b8288f7c85d3f5240503cab222a8f7cd1 /src/lib/libcrypto/bn/asm | |
parent | 17857517b8365550715ae6e3a903db79159baab7 (diff) | |
parent | 58c08aa241f168c84ce7cc3052454ea59a44eada (diff) | |
download | openbsd-a4ab668c13b41cdc59a6f7dc9cf6c88c39d2466b.tar.gz openbsd-a4ab668c13b41cdc59a6f7dc9cf6c88c39d2466b.tar.bz2 openbsd-a4ab668c13b41cdc59a6f7dc9cf6c88c39d2466b.zip |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto/bn/asm')
-rw-r--r-- | src/lib/libcrypto/bn/asm/x86_64-gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/bn/asm/x86_64-gcc.c b/src/lib/libcrypto/bn/asm/x86_64-gcc.c index b97b394661..450e8e4322 100644 --- a/src/lib/libcrypto/bn/asm/x86_64-gcc.c +++ b/src/lib/libcrypto/bn/asm/x86_64-gcc.c | |||
@@ -142,7 +142,7 @@ void bn_sqr_words(BN_ULONG *r, BN_ULONG *a, int n) | |||
142 | BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d) | 142 | BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d) |
143 | { BN_ULONG ret,waste; | 143 | { BN_ULONG ret,waste; |
144 | 144 | ||
145 | asm ("divq %3" | 145 | asm ("divq %4" |
146 | : "=a"(ret),"=d"(waste) | 146 | : "=a"(ret),"=d"(waste) |
147 | : "a"(l),"d"(h),"g"(d) | 147 | : "a"(l),"d"(h),"g"(d) |
148 | : "cc"); | 148 | : "cc"); |