diff options
author | Craig Topper <craig.topper@gmail.com> | 2017-02-09 06:50:59 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2017-02-09 06:50:59 +0000 |
commit | 86576bd9217d4176eaf47cf3bd21c4dc620b30e9 (patch) | |
tree | 2cf486f69aae1be442ed1fc7116be7d8955faf0f /llvm/lib/Target/X86/X86Subtarget.h | |
parent | 41cb8ffcc120d7ac2edc75f10aed6f1d163ff40e (diff) | |
download | bcm5719-llvm-86576bd9217d4176eaf47cf3bd21c4dc620b30e9.tar.gz bcm5719-llvm-86576bd9217d4176eaf47cf3bd21c4dc620b30e9.zip |
[X86] Remove INVPCID and SMAP feature flags. They aren't currently used by any instructions and not tested.
If we implement intrinsics for their instructions in the future, the feature flags can be added back with proper testing.
llvm-svn: 294561
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.h')
-rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.h b/llvm/lib/Target/X86/X86Subtarget.h index dffdc5a82ef..a320055ec28 100644 --- a/llvm/lib/Target/X86/X86Subtarget.h +++ b/llvm/lib/Target/X86/X86Subtarget.h @@ -274,12 +274,6 @@ protected: /// Processor supports MPX - Memory Protection Extensions bool HasMPX; - /// Processor supports Invalidate Process-Context Identifier - bool HasInvPCId; - - /// Processor has Supervisor Mode Access Protection - bool HasSMAP; - /// Processor has Software Guard Extensions bool HasSGX; |