cpu_sse42.cpp 96 Bytes
Newer Older
wester committed
1 2 3 4 5 6 7
#include <nmmintrin.h>

int main()
{
    unsigned int res = _mm_crc32_u8(1, 2);
    return 0;
}