I am working with SSE2 instructions on VS2013 and I realized that some functions in the Intel documentation are missing from the header they are supposed to be in.
The method void _mm_storeu_si32 (void* mem_addr, __m128i a)
should be in #include <immintrin.h>
but it is not. I do have access to other methods from this header though like __m128d _mm_undefined_pd (void)
for example.
If I do search in the header file itself (delivered by VS2013), there is indeed no mention about the _mm_storeu_si32
instruction.
How can this be ?