GH-131296: fix clang-cl warnings on Windows in blake2module.c (#131299)

work around unimportant clang-cl warnings in blake2module.c
This commit is contained in:
Chris Eibl 2025-03-15 19:37:53 +01:00 committed by GitHub
parent 0ce056d265
commit faa80fcf46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,10 +92,10 @@ void detect_cpu_features(cpu_flags *flags) {
ebx7 = info7[1];
ecx7 = info7[2];
edx7 = info7[3];
#else
#endif
(void) eax1; (void) ebx1; (void) ecx1; (void) edx1;
(void) eax7; (void) ebx7; (void) ecx7; (void) edx7;
#endif
flags->avx = (ecx1 & ECX_AVX) != 0;