From 23a7ba244c23295f52bb6a169d0ea2d2009b4c00 Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Sun, 20 Oct 2019 10:06:51 +0200 Subject: [PATCH] Avoid 64-bit rotation for i386 targets --- src/headers/tomcrypt_macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/headers/tomcrypt_macros.h b/src/headers/tomcrypt_macros.h index 862a69a83..2e55832de 100644 --- a/src/headers/tomcrypt_macros.h +++ b/src/headers/tomcrypt_macros.h @@ -378,7 +378,7 @@ static inline ulong32 RORc(ulong32 word, const int i) #define ROR64c(x,n) ROR64(x,n) #define ROL64c(x,n) ROL64(x,n) -#elif !defined(__STRICT_ANSI__) && defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && !defined(INTEL_CC) && !defined(LTC_NO_ASM) +#elif !defined(__STRICT_ANSI__) && defined(__GNUC__) && defined(__x86_64__) && !defined(INTEL_CC) && !defined(LTC_NO_ASM) static inline ulong64 ROL64(ulong64 word, int i) {