From 1b19ee040fa6285aaf11a7fcbd8945bb5dc55e25 Mon Sep 17 00:00:00 2001 From: Javier Smooth Date: Mon, 13 Apr 2015 16:38:33 -0700 Subject: [PATCH] disable non-working optimized slow_hash on 32 bit intel --- src/crypto/slow-hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 131c216a..42573798 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