diff --git a/src/c/arch/fpe_x86.c b/src/c/arch/fpe_x86.c old mode 100644 new mode 100755 index d5b2aba54..cbe2721cf --- a/src/c/arch/fpe_x86.c +++ b/src/c/arch/fpe_x86.c @@ -18,7 +18,11 @@ */ #ifdef _MSC_VER -#define ecl_detect_fpe() __asm fwait +# ifdef _WIN64 +# error "This file shouldn't have been included!" +# else +# define ecl_detect_fpe() __asm fwait +# endif #endif #ifdef __GNUC__