mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
8 lines
113 B
C++
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;
|
|
}
|