mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-19 06:41:47 -05:00
9 lines
148 B
C++
9 lines
148 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;
|
||
|
}
|