diff options
author | Michael Stapelberg <stapelberg@debian.org> | 2014-06-19 09:22:53 +0200 |
---|---|---|
committer | Michael Stapelberg <stapelberg@debian.org> | 2014-06-19 09:22:53 +0200 |
commit | 8a39ee361feb9bf46d728ff1ba4f07ca1d9610b1 (patch) | |
tree | 4449f2036cccf162e8417cc5841a35815b3e7ac5 /src/pkg/crypto/sha1/sha1block_386.s | |
parent | c8bf49ef8a92e2337b69c14b9b88396efe498600 (diff) | |
download | golang-upstream/1.3.tar.gz |
Imported Upstream version 1.3upstream/1.3
Diffstat (limited to 'src/pkg/crypto/sha1/sha1block_386.s')
-rw-r--r-- | src/pkg/crypto/sha1/sha1block_386.s | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/pkg/crypto/sha1/sha1block_386.s b/src/pkg/crypto/sha1/sha1block_386.s index 890b3ae81..688851c31 100644 --- a/src/pkg/crypto/sha1/sha1block_386.s +++ b/src/pkg/crypto/sha1/sha1block_386.s @@ -46,12 +46,10 @@ ADDL DI, e #define FUNC1(a, b, c, d, e) \ - MOVL b, SI; \ - ANDL c, SI; \ - MOVL b, DI; \ - NOTL DI; \ - ANDL d, DI; \ - ORL SI, DI + MOVL d, DI; \ + XORL c, DI; \ + ANDL b, DI; \ + XORL d, DI #define FUNC2(a, b, c, d, e) \ MOVL b, DI; \ |