fixed IA64 compilation error, by @mcmilk

This commit is contained in:
Yann Collet
2017-06-19 15:27:30 -07:00
parent fe234bf48b
commit 695a0a3449
+1 -1
View File
@@ -53,7 +53,7 @@
# include "zstd_legacy.h"
#endif
#if defined(_MSC_VER)
#if defined(_MSC_VER) && !defined(_M_IA64) /* _mm_prefetch() is not defined for ia64 */
# include <mmintrin.h> /* https://msdn.microsoft.com/fr-fr/library/84szxsww(v=vs.90).aspx */
# define ZSTD_PREFETCH(ptr) _mm_prefetch((const char*)ptr, _MM_HINT_T0)
#elif defined(__GNUC__)