2024-07-24 15:17:01 +08:00

8 lines
96 B
C++

#include <nmmintrin.h>
int main()
{
unsigned int res = _mm_crc32_u8(1, 2);
return 0;
}