Skip to content

Commit faa80fc

Browse files
authored
GH-131296: fix clang-cl warnings on Windows in blake2module.c (#131299)
work around unimportant clang-cl warnings in blake2module.c
1 parent 0ce056d commit faa80fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Modules/blake2module.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ void detect_cpu_features(cpu_flags *flags) {
9292
ebx7 = info7[1];
9393
ecx7 = info7[2];
9494
edx7 = info7[3];
95-
#else
95+
#endif
9696
(void) eax1; (void) ebx1; (void) ecx1; (void) edx1;
9797
(void) eax7; (void) ebx7; (void) ecx7; (void) edx7;
98-
#endif
98+
9999

100100
flags->avx = (ecx1 & ECX_AVX) != 0;
101101

0 commit comments

Comments
 (0)