mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
8 lines
128 B
C++
8 lines
128 B
C++
|
#include <emmintrin.h>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
__m128i x = _mm_setzero_si128();
|
||
|
x=_mm_add_epi64(x,x);
|
||
|
return 0;
|
||
|
}
|