diff options
| author | Craig Topper <craig.topper@intel.com> | 2017-08-29 23:13:36 +0000 |
|---|---|---|
| committer | Craig Topper <craig.topper@intel.com> | 2017-08-29 23:13:36 +0000 |
| commit | 559f61e17934ca7c809173d52e1dbd38851c6506 (patch) | |
| tree | 923018461972c9821f6bca99e906c36856c21e03 /llvm/lib/Target/X86/X86Subtarget.h | |
| parent | 68e460194a82db9467b3fea7d0d95d7f91d88759 (diff) | |
| download | bcm5719-llvm-559f61e17934ca7c809173d52e1dbd38851c6506.tar.gz bcm5719-llvm-559f61e17934ca7c809173d52e1dbd38851c6506.zip | |
[X86] Finish the subtarget and predicate implementation of CLWB.
We don't have an intrinsic implemented for this instruction yet, but it looked odd that we were missing the accessor method from the subtarget.
llvm-svn: 312064
Diffstat (limited to 'llvm/lib/Target/X86/X86Subtarget.h')
| -rw-r--r-- | llvm/lib/Target/X86/X86Subtarget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86Subtarget.h b/llvm/lib/Target/X86/X86Subtarget.h index e1e1cdfb8da..8b869022d76 100644 --- a/llvm/lib/Target/X86/X86Subtarget.h +++ b/llvm/lib/Target/X86/X86Subtarget.h @@ -507,6 +507,7 @@ public: bool hasPKU() const { return HasPKU; } bool hasMPX() const { return HasMPX; } bool hasCLFLUSHOPT() const { return HasCLFLUSHOPT; } + bool hasCLWB() const { return HasCLWB; } bool isXRaySupported() const override { return is64Bit(); } |

