1
0
mirror of https://github.com/google/cpu_features.git synced 2025-04-28 07:23:37 +02:00

Fix case in CPU_FEATURES_COMPILED_X86_AVX2 (Fix #102)

This commit is contained in:
Corentin Le Molgat 2020-01-29 08:11:59 +01:00 committed by Guillaume Chatelet
parent a6d219bed7
commit ec6354f0f4

View File

@ -186,9 +186,9 @@
#endif // defined(__AVX__)
#if defined(__AVX2__)
#define CPU_FEATURES_COMPILED_x86_AVX2 1
#define CPU_FEATURES_COMPILED_X86_AVX2 1
#else
#define CPU_FEATURES_COMPILED_x86_AVX2 0
#define CPU_FEATURES_COMPILED_X86_AVX2 0
#endif // defined(__AVX2__)
#endif // defined(CPU_FEATURES_ARCH_X86)