1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 21:31:15 +02:00

Fixes #2 - vpclmulqdq should be pclmulqdq.

This commit is contained in:
Guillaume Chatelet
2018-02-08 11:35:31 +01:00
parent 882fff1787
commit 338484f6f2
2 changed files with 7 additions and 7 deletions

View File

@ -25,7 +25,7 @@ typedef struct {
int erms : 1;
int f16c : 1;
int fma3 : 1;
int vpclmulqdq : 1;
int pclmulqdq : 1;
int bmi1 : 1;
int bmi2 : 1;
@ -110,7 +110,7 @@ typedef enum {
X86_ERMS,
X86_F16C,
X86_FMA3,
X86_VPCLMULQDQ,
X86_PCLMULQDQ,
X86_BMI1,
X86_BMI2,
X86_SSSE3,