[PATCH] D88398: [X86] Support Intel Key Locker
Xiang Zhang via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 29 23:04:33 PDT 2020
xiangzhangllvm marked an inline comment as done.
xiangzhangllvm 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);
----------------
craig.topper wrote:
> Remove commented out code
Done, TKS!
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88398/new/
https://reviews.llvm.org/D88398
More information about the llvm-commits
mailing list