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

Support x86 DCA and SS features (#76)

* Add dca and ss features
* Remove trailing white spaces
This commit is contained in:
Artem Alekseev
2019-06-19 16:06:05 +03:00
committed by Guillaume Chatelet
parent 6482bad213
commit 3ee4a9e801
2 changed files with 14 additions and 0 deletions

View File

@ -76,6 +76,8 @@ typedef struct {
int movbe : 1;
int rdrnd : 1;
int dca : 1;
int ss : 1;
// Make sure to update X86FeaturesEnum below if you add a field here.
} X86Features;
@ -179,6 +181,8 @@ typedef enum {
X86_POPCNT,
X86_MOVBE,
X86_RDRND,
X86_DCA,
X86_SS,
X86_LAST_,
} X86FeaturesEnum;