Does Visual Studio C++ 2008/2010 support _mm_malloc
officially? It is defined in malloc.h
but I can't find its description in the MSDN library.
views:
120answers:
1
A:
Doesn't answer your question directly, but I think you're suppose to use _aligned_malloc
. If my understanding is correct, _mm_malloc
is for Intel compilers.
GMan
2010-07-22 07:15:43
`_mm_malloc` is supported by gcc, and `_aligned_malloc` is not. Microsoft compiler seems to be support it too, but I can't find any official paper about it.
Kirill V. Lyadvinsky
2010-07-22 08:03:51
Downvoting without a comment on a question with one answer is about as useless as you can be.
GMan
2010-09-09 20:21:35