1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-17 01:52:06 +00:00
This commit is contained in:
jsteube 2017-08-28 15:54:47 +02:00
parent 918578bee1
commit 6db2f4cc18

View File

@ -250,7 +250,7 @@ static u32x swap32 (const u32x v)
u32x r;
#if VECT_SIZE == 1
__asm__ volatile ("V_PERM_B32 %0, 0, %1, %2;" : "=v"(t) : "v"(v), "v"(0x00010203));
__asm__ volatile ("V_PERM_B32 %0, 0, %1, %2;" : "=v"(r) : "v"(v), "v"(0x00010203));
#endif
#if VECT_SIZE >= 2