瀏覽代碼

Avoid 64-bit rotation for i386 targets

Karel Miko 6 年之前
父節點
當前提交
23a7ba244c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/headers/tomcrypt_macros.h

+ 1 - 1
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)
 {