diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-05-05 13:56:35 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-05-05 13:56:37 +0200 |
commit | b63e8410b98a9a00723f29f5aae554dfa83ba695 (patch) | |
tree | 09df3a3da60553d3d9236afbeb62a56376cbdcf5 | |
parent | update lmdb64 (diff) | |
parent | disable non-working optimized slow_hash on 32 bit intel (diff) | |
download | monero-b63e8410b98a9a00723f29f5aae554dfa83ba695.tar.xz |
Merge pull request #265
1b19ee0 disable non-working optimized slow_hash on 32 bit intel (Javier Smooth)
-rw-r--r-- | src/crypto/slow-hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 131c216a8..425737984 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -37,7 +37,7 @@ #include "hash-ops.h" #include "oaes_lib.h" -#if defined(__x86_64__) || defined(__i386) +#if defined(__x86_64__) // Optimised code below, uses x86-specific intrinsics, SSE2, AES-NI // Fall back to more portable code is down at the bottom |