Upon defining a __m128i
variable in this manner:
__m128i a;
a.m128i_i32[0] = 65000;
I get the following error:
error: request for member ‘m128i_i32’ in ‘a’, which is of non-class type ‘__m128i {aka __vector(2) long long int}’ a.m128i_i32[0] = 65000;
I have included the followinf header files:
#include <x86intrin.h>
#include <emmintrin.h>
#include <smmintrin.h>