fix compilation on windows - wrong include file

This commit is contained in:
Sergei Golubchik 2014-09-08 17:10:48 +02:00
parent 638075e5e9
commit 8deb9066e2
2 changed files with 2 additions and 2 deletions

View File

@ -455,7 +455,7 @@ clobbered */
#elif defined(HAVE_WINDOWS_MM_FENCE)
# define HAVE_MEMORY_BARRIER
# include <mmintrin.h>
# include <intrin.h>
# define os_rmb _mm_lfence()
# define os_wmb _mm_sfence()
# define os_isync os_rmb; os_wmb

View File

@ -475,7 +475,7 @@ clobbered */
#elif defined(HAVE_WINDOWS_MM_FENCE)
# define HAVE_MEMORY_BARRIER
# include <mmintrin.h>
# include <intrin.h>
# define os_rmb _mm_lfence()
# define os_wmb _mm_sfence()
# define os_isync os_rmb; os_wmb