diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-09-16 04:27:32 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2015-09-16 14:08:38 +0200 |
commit | 98da122ab4a1f20822a953dd318f995b1ed055ba (patch) | |
tree | fbb9bf5952adce820613fcf6a083348ab1e39f18 /src/ext/ed25519 | |
parent | a444b11323799536b4cd7902e29f711b0806293a (diff) | |
download | tor-98da122ab4a1f20822a953dd318f995b1ed055ba.tar.gz tor-98da122ab4a1f20822a953dd318f995b1ed055ba.zip |
Don't enable SSE2 on X86-64.
This removes a comment presumably introduced for debugging that was left
in accidentally. Bug not in any released version of Tor. Fixes bug
17092.
Diffstat (limited to 'src/ext/ed25519')
-rw-r--r-- | src/ext/ed25519/donna/ed25519-donna-portable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/ed25519/donna/ed25519-donna-portable.h b/src/ext/ed25519/donna/ed25519-donna-portable.h index 9c9c55577c..75a53a570f 100644 --- a/src/ext/ed25519/donna/ed25519-donna-portable.h +++ b/src/ext/ed25519/donna/ed25519-donna-portable.h @@ -148,7 +148,7 @@ static inline void U64TO8_LE(unsigned char *p, const uint64_t v) { * architecture supports it. This is not done on x86-64 as the non-SSE2 * code benchmarks better, at least on Haswell. */ -#if defined(__SSE2__) /* && !defined(CPU_X86_64) */ +#if defined(__SSE2__) && !defined(CPU_X86_64) /* undef in case it's manually specified... */ #undef ED25519_SSE2 #define ED25519_SSE2 |