1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00
sdrangel/cmake/test/test_x86_sse42.cxx
2019-04-18 09:42:29 +02:00

8 lines
113 B
C++

#include <nmmintrin.h>
int main(int argc, char* argv[])
{
unsigned int x=32;
x=_mm_crc32_u8(x,4);
return 0;
}