projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d457582
)
Typo in crypto/bn/asm/x86_64.c, bn_div_words().
author
Andy Polyakov
<appro@openssl.org>
Sat, 7 Feb 2004 09:51:28 +0000
(09:51 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Sat, 7 Feb 2004 09:51:28 +0000
(09:51 +0000)
PR: 821
crypto/bn/asm/x86_64-gcc.c
patch
|
blob
|
history
diff --git
a/crypto/bn/asm/x86_64-gcc.c
b/crypto/bn/asm/x86_64-gcc.c
index b97b394661aa2bf627c43c7ba77899f33653a05c..450e8e43228e11307d7dc2608b5f473f1db1371e 100644
(file)
--- 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");