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

Detect Intel's Multi-Precision Add-Carry Instruction Extensions (#157)

This commit is contained in:
Kris Kwiatkowski
2021-05-21 09:47:32 +01:00
committed by GitHub
parent 3e8243b7d9
commit d35e2f38eb
3 changed files with 6 additions and 1 deletions

View File

@ -89,6 +89,7 @@ typedef struct {
int dca : 1;
int ss : 1;
int adx : 1;
// Make sure to update X86FeaturesEnum below if you add a field here.
} X86Features;
@ -214,6 +215,7 @@ typedef enum {
X86_RDRND,
X86_DCA,
X86_SS,
X86_ADX,
X86_LAST_,
} X86FeaturesEnum;