summaryrefslogtreecommitdiff
path: root/salsa.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2007-09-24 03:52:17 +0000
committerweidai <weidai11@users.noreply.github.com>2007-09-24 03:52:17 +0000
commit9ee3a25d0d5120cad1e4e32ce3e93e37ffc3e621 (patch)
tree8ee08d24d7c2538cb83ce2806986720a5c543294 /salsa.cpp
parent8edb9adc83b32bf635967d7b3f196382158cf1f0 (diff)
downloadcryptopp-git-9ee3a25d0d5120cad1e4e32ce3e93e37ffc3e621.tar.gz
remove -msse2 since we don't use SSE2 intrinsics anymore
Diffstat (limited to 'salsa.cpp')
-rwxr-xr-xsalsa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/salsa.cpp b/salsa.cpp
index 4681ec67..998d9f42 100755
--- a/salsa.cpp
+++ b/salsa.cpp
@@ -467,7 +467,7 @@ void Salsa20_Policy::OperateKeystream(KeystreamOperation operation, byte *output
: "%eax", "%edx", "memory", "cc", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm12", "%xmm13", "%xmm14", "%xmm15"
#else
: "m" (r), "a" (input), "c" (iterationCount), "S" (m_state.data()), "D" (output)
- : "%edx", "memory", "cc", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7"
+ : "%edx", "memory", "cc"
#endif
);
#endif