Skip to content
Snippets Groups Projects
Commit ff31b790 authored by MuldeR's avatar MuldeR Committed by Jean-Marc Valin
Browse files

Enable SSE for MSVC

parent 96e2be37
No related branches found
No related tags found
No related merge requests found
...@@ -42,6 +42,11 @@ POSSIBILITY OF SUCH DAMAGE. ...@@ -42,6 +42,11 @@ POSSIBILITY OF SUCH DAMAGE.
#pragma warning(disable : 4996)/* This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. */ #pragma warning(disable : 4996)/* This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. */
#endif #endif
/* Enable SSE functions, if compiled with SSE/SSE2 (note that AMD64 implies SSE2) */
#if defined(_M_X64) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1))
#define __SSE__ 1
#endif
#include "version.h" #include "version.h"
#endif /* CONFIG_H */ #endif /* CONFIG_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment