diff options
author | Hal Finkel <hfinkel@anl.gov> | 2012-06-11 19:57:01 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2012-06-11 19:57:01 +0000 |
commit | bfd3d08d1879595635b1965112a087d21c05b6d0 (patch) | |
tree | 9f6e8a850923b73cc5423144d21a4acb7c81355a /llvm/lib/Target/PowerPC/PPCSubtarget.h | |
parent | 25d4c568d3d296783e80cdc9bb1708f562f92ccf (diff) | |
download | bcm5719-llvm-bfd3d08d1879595635b1965112a087d21c05b6d0.tar.gz bcm5719-llvm-bfd3d08d1879595635b1965112a087d21c05b6d0.zip |
Rename the PPC target feature gpul to mfocrf.
The PPC target feature gpul (IsGigaProcessor) was only used for one thing:
To enable the generation of the MFOCRF instruction. Furthermore, this
instruction is available on other PPC cores outside of the G5 line. This
feature now corresponds to the HasMFOCRF flag.
No functionality change.
llvm-svn: 158323
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index 744a6304e46..7d9be557137 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -63,7 +63,7 @@ protected: unsigned DarwinDirective; /// Used by the ISel to turn in optimizations for POWER4-derived architectures - bool IsGigaProcessor; + bool HasMFOCRF; bool Has64BitSupport; bool Use64BitRegs; bool IsPPC64; @@ -140,7 +140,7 @@ public: bool hasFSQRT() const { return HasFSQRT; } bool hasSTFIWX() const { return HasSTFIWX; } bool hasAltivec() const { return HasAltivec; } - bool isGigaProcessor() const { return IsGigaProcessor; } + bool hasMFOCRF() const { return HasMFOCRF; } bool isBookE() const { return IsBookE; } const Triple &getTargetTriple() const { return TargetTriple; } |