1
0
forked from 0ad/0ad

fix: GCC requires emmintrin.h for _mm_mfence

This was SVN commit r6106.
This commit is contained in:
janwas 2008-06-25 20:37:25 +00:00
parent 8529e2b14f
commit 129f923cf5

View File

@ -30,8 +30,9 @@
# endif
#if MSC_VERSION
# include <intrin.h>
# include <intrin.h> // __rdtsc
#elif GCC_VERSION
# include <emmintrin.h>
#else
# error compiler not supported
#endif