mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-31 09:15:11 +00:00
9 lines
165 B
C++
9 lines
165 B
C++
|
#include <emmintrin.h>
|
||
|
#include <pmmintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
__m128d x = _mm_setzero_pd();
|
||
|
x=_mm_addsub_pd(x,x);
|
||
|
return 0;
|
||
|
}
|