Fix for some missing macros

master
Chris Robinson 2022-03-10 18:05:07 -08:00
parent 609ee74211
commit 8e0164df96
1 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,11 @@
#endif
#ifdef HAVE_SSE_INTRINSICS
#include <emmintrin.h>
#ifndef _MM_DENORMALS_ZERO_MASK
/* Some headers seem to be missing these? */
#define _MM_DENORMALS_ZERO_MASK 0x0040u
#define _MM_DENORMALS_ZERO_ON 0x0040u
#endif
#endif
#include "cpu_caps.h"