Improve MessageStringCollector
[alexxy/gromacs.git] / cmake / TestMMMalloc.cpp
1 #if HAVE_MM_MALLOC_H
2 #    include <mm_malloc.h>
3 #elif HAVE_MALLOC_H
4 #    include <malloc.h>
5 #elif HAVE_XMMINTRIN_H
6 #    include <xmmintrin.h>
7 #endif
8
9 int
10 main()
11 {
12     void *p = _mm_malloc(8*sizeof(float),64);
13     _mm_free(p);
14 }