1
0
mirror of https://github.com/google/cpu_features.git synced 2025-06-30 21:02:34 +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

@ -148,6 +148,7 @@ TEST_F(CpuidX86Test, SandyBridge) {
EXPECT_TRUE(features.popcnt);
EXPECT_FALSE(features.movbe);
EXPECT_FALSE(features.rdrnd);
EXPECT_FALSE(features.adx);
}
const int KiB = 1024;