suppress warnings for Mingw

This commit is contained in:
Recep Aslantas
2018-04-30 11:09:42 +03:00
parent 6c01eff056
commit 94d6036c38

View File

@@ -10,10 +10,14 @@
#if defined( _WIN32 ) #if defined( _WIN32 )
# if (defined(_M_AMD64) || defined(_M_X64)) || _M_IX86_FP == 2 # if (defined(_M_AMD64) || defined(_M_X64)) || _M_IX86_FP == 2
# ifndef __SSE2__
# define __SSE2__ # define __SSE2__
# endif
# elif _M_IX86_FP == 1 # elif _M_IX86_FP == 1
# ifndef __SSE__
# define __SSE__ # define __SSE__
# endif # endif
# endif
#endif #endif
#if defined( __SSE__ ) || defined( __SSE2__ ) #if defined( __SSE__ ) || defined( __SSE2__ )