Replaced the intrinsics header with the single header that includes all intrinsics so we can use AVX, etc.
diff --git a/include/SDL_cpuinfo.h b/include/SDL_cpuinfo.h
index 94b64b0..19a88de 100644
--- a/include/SDL_cpuinfo.h
+++ b/include/SDL_cpuinfo.h
@@ -56,21 +56,10 @@
#undef pixel
#endif
#endif
-#ifdef __MMX__
-#include <mmintrin.h>
-#endif
#ifdef __3dNOW__
#include <mm3dnow.h>
#endif
-#ifdef __SSE__
-#include <xmmintrin.h>
-#endif
-#ifdef __SSE2__
-#include <emmintrin.h>
-#endif
-#ifdef __SSE3__
-#include <pmmintrin.h>
-#endif
+#include <immintrin.h>
#endif
#include "begin_code.h"