diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-01-27 09:15:14 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-01-27 09:15:14 +0200 |
commit | e70bc3d369e5c8bde1a796455eddb46a7c6473ef (patch) | |
tree | 34f79f0e43a17697cb9044f5ea28f259275c3580 | |
parent | remove aes flag, detect no sse2 (diff) | |
download | monero-e70bc3d369e5c8bde1a796455eddb46a7c6473ef.tar.xz |
fixed sse2 ifdef
-rw-r--r-- | src/crypto/slow-hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 2b9cb0ee5..301aa3186 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -37,9 +37,9 @@ #include "hash-ops.h" #include "oaes_lib.h" -#ifndef __SSE2__ +#ifdef __SSE2__ #include <emmintrin.h> -#else +#endif #if defined(_MSC_VER) #include <intrin.h> |