aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/helpers.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c
index d99a70e6..963ead67 100644
--- a/Alc/helpers.c
+++ b/Alc/helpers.c
@@ -73,10 +73,10 @@ void FillCPUCaps(ALuint capfilter)
{
ALuint caps = 0;
-#if defined(__i386__) || defined(__x86_64__) || defined(_M_IX86) || defined(_M_X64)
/* FIXME: We really should get this for all available CPUs in case different
* CPUs have different caps (is that possible on one machine?). */
-#ifdef HAVE_CPUID_H
+#if defined(HAVE_CPUID_H) && (defined(__i386__) || defined(__x86_64__) || \
+ defined(_M_IX86) || defined(_M_X64))
union {
unsigned int regs[4];
char str[sizeof(unsigned int[4])];
@@ -121,7 +121,6 @@ void FillCPUCaps(ALuint capfilter)
caps |= CPU_CAP_SSE;
}
#endif
-#endif
#ifdef HAVE_NEON
/* Assume Neon support if compiled with it */
caps |= CPU_CAP_NEON;