aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/slow-hash.c
diff options
context:
space:
mode:
authorJavier Smooth <iamjaviersmooth@gmail.com>2015-04-13 16:38:33 -0700
committerJavier Smooth <iamjaviersmooth@gmail.com>2015-04-13 16:38:33 -0700
commit1b19ee040fa6285aaf11a7fcbd8945bb5dc55e25 (patch)
tree0295228c8b4bcd2c26aead23a140fea30283ed54 /src/crypto/slow-hash.c
parentMerge pull request #261 (diff)
downloadmonero-1b19ee040fa6285aaf11a7fcbd8945bb5dc55e25.tar.xz
disable non-working optimized slow_hash on 32 bit intel
Diffstat (limited to 'src/crypto/slow-hash.c')
-rw-r--r--src/crypto/slow-hash.c2
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