Skip to content

Commit c7465ee

Browse files
committed
Monero format: Fix SSE4.1 + AES-NI asm code
Fixes #5935
1 parent 06c1a63 commit c7465ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slow_hash_plug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ int cn_slow_hash(const void *data, size_t length, char *hash, void *memory)
318318
"paddq %%xmm3,%%xmm0\n\t"
319319
"movdqa %%xmm0,(%%rbx,%%rcx)\n\t"
320320
"pxor %%xmm1,%%xmm0\n\t"
321-
"vmovdqa (%%rbx,%%rdx),%%xmm1\n\t"
321+
"movdqa (%%rbx,%%rdx),%%xmm1\n\t"
322322
"aesenc %%xmm0,%%xmm1\n\t"
323323
"movq %%xmm1,%%rcx\n\t"
324324
"movq %%xmm1,%%rax\n\t"

0 commit comments

Comments
 (0)