Skip to content

Commit 23a7ba2

Browse files
committed
Avoid 64-bit rotation for i386 targets
1 parent 25410c7 commit 23a7ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/headers/tomcrypt_macros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ static inline ulong32 RORc(ulong32 word, const int i)
378378
#define ROR64c(x,n) ROR64(x,n)
379379
#define ROL64c(x,n) ROL64(x,n)
380380

381-
#elif !defined(__STRICT_ANSI__) && defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) && !defined(INTEL_CC) && !defined(LTC_NO_ASM)
381+
#elif !defined(__STRICT_ANSI__) && defined(__GNUC__) && defined(__x86_64__) && !defined(INTEL_CC) && !defined(LTC_NO_ASM)
382382

383383
static inline ulong64 ROL64(ulong64 word, int i)
384384
{

0 commit comments

Comments
 (0)