views:

120

answers:

1

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.

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
`_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
Downvoting without a comment on a question with one answer is about as useless as you can be.
GMan