aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/x86_64
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r--sysdeps/x86_64/fpu/math-tests-arch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/x86_64/fpu/math-tests-arch.h b/sysdeps/x86_64/fpu/math-tests-arch.h
index f521e218b9..952d919a45 100644
--- a/sysdeps/x86_64/fpu/math-tests-arch.h
+++ b/sysdeps/x86_64/fpu/math-tests-arch.h
@@ -24,7 +24,7 @@
# define CHECK_ARCH_EXT \
do \
{ \
- if (!CPU_FEATURE_USABLE (AVX)) return; \
+ if (!CPU_FEATURE_ACTIVE (AVX)) return; \
} \
while (0)
@@ -34,7 +34,7 @@
# define CHECK_ARCH_EXT \
do \
{ \
- if (!CPU_FEATURE_USABLE (AVX2)) return; \
+ if (!CPU_FEATURE_ACTIVE (AVX2)) return; \
} \
while (0)
@@ -44,7 +44,7 @@
# define CHECK_ARCH_EXT \
do \
{ \
- if (!CPU_FEATURE_USABLE (AVX512F)) return; \
+ if (!CPU_FEATURE_ACTIVE (AVX512F)) return; \
} \
while (0)