diff options
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index ed9d5f1ae56..fd050880161 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -136,6 +136,8 @@ protected: bool UseLongCalls; bool SecurePlt; bool VectorsUseTwoUnits; + bool UsePPCPreRASchedStrategy; + bool UsePPCPostRASchedStrategy; POPCNTDKind HasPOPCNTD; @@ -268,6 +270,8 @@ public: bool hasInvariantFunctionDescriptors() const { return HasInvariantFunctionDescriptors; } + bool usePPCPreRASchedStrategy() const { return UsePPCPreRASchedStrategy; } + bool usePPCPostRASchedStrategy() const { return UsePPCPostRASchedStrategy; } bool hasPartwordAtomics() const { return HasPartwordAtomics; } bool hasDirectMove() const { return HasDirectMove; } |