Replace prefetchnta with prefetcht0 for crc32

This commit is contained in:
hanqf-git 2024-03-11 10:17:22 +08:00
parent f1b144bbab
commit 6bbdffa8fb

View File

@ -205,7 +205,7 @@ CONCAT(_crc_,i,:)
crc32 crc2, qword [block_2 - i*8]
%if i > 128*8 / 32 ; prefetch next 3KB data
prefetchnta [block_2 + 128*32 - i*32]
prefetcht0 [block_2 + 128*32 - i*32]
%endif
%assign i (i-1)