diff options
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index 15885bd2dfb..070a9a9485f 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -79,6 +79,7 @@ protected: bool HasFSQRT; bool HasSTFIWX; bool HasISEL; + bool HasPOPCNTD; bool IsBookE; bool HasLazyResolverStubs; bool IsJITCodeModel; @@ -159,6 +160,7 @@ public: bool hasQPX() const { return HasQPX; } bool hasMFOCRF() const { return HasMFOCRF; } bool hasISEL() const { return HasISEL; } + bool hasPOPCNTD() const { return HasPOPCNTD; } bool isBookE() const { return IsBookE; } const Triple &getTargetTriple() const { return TargetTriple; } |