mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 20:40:20 -04: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;
 | |
| }
 |