mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-19 03:20:55 +00:00
9 lines
180 B
C++
9 lines
180 B
C++
|
#include <emmintrin.h>
|
||
|
#include <wmmintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
__m128i x = _mm_setzero_si128();
|
||
|
x=_mm_clmulepi64_si128(x,x,0x11);
|
||
|
return 0;
|
||
|
}
|