Fix comment for avx512 detection
AVX-512VL is bit 31, not 32
Change-Id: Id1012aff5c1c96ff9b1cfc91fb742752b5a27bef
diff --git a/vpx_ports/x86.h b/vpx_ports/x86.h
index 3fa50b2..bf5bd61 100644
--- a/vpx_ports/x86.h
+++ b/vpx_ports/x86.h
@@ -213,7 +213,7 @@
if (reg_ebx & BIT(5)) flags |= HAS_AVX2;
// bits 16 (AVX-512F) & 17 (AVX-512DQ) & 28 (AVX-512CD) &
- // 30 (AVX-512BW) & 32 (AVX-512VL)
+ // 30 (AVX-512BW) & 31 (AVX-512VL)
if ((reg_ebx & (BIT(16) | BIT(17) | BIT(28) | BIT(30) | BIT(31))) ==
(BIT(16) | BIT(17) | BIT(28) | BIT(30) | BIT(31))) {
// Check for OS-support of ZMM and YMM state. Necessary for AVX-512.