[PATCH] D88398: [X86] Support Intel Key Locker
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 29 20:11:40 PDT 2020
craig.topper added inline comments.
================
Comment at: llvm/lib/Support/Host.cpp:1515
+ MaxLevel >= 0x19 && !getX86CpuIDAndInfo(0x19, &EAX, &EBX, &ECX, &EDX);
+ // Features["aeskle"] = HasLeaf7 && HasLeaf19 && ((EBX >> 0) & 1);
+ Features["widekl"] = HasLeaf7 && HasLeaf19 && ((EBX >> 2) & 1);
----------------
Remove commented out code
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88398/new/
https://reviews.llvm.org/D88398
More information about the llvm-commits
mailing list