diff options
Diffstat (limited to 'lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | lib/Target/PowerPC/PPCSubtarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCSubtarget.h b/lib/Target/PowerPC/PPCSubtarget.h index 33f73b22aa..1e428f5368 100644 --- a/lib/Target/PowerPC/PPCSubtarget.h +++ b/lib/Target/PowerPC/PPCSubtarget.h @@ -29,6 +29,7 @@ protected: /// Used by the ISel to turn in optimizations for POWER4-derived architectures bool IsGigaProcessor; + bool Is64Bit; bool HasFSQRT; bool IsAIX; bool IsDarwin; @@ -47,7 +48,7 @@ public: bool isAIX() const { return IsAIX; } bool isDarwin() const { return IsDarwin; } - + bool is64Bit() const { return Is64Bit; } bool isGigaProcessor() const { return IsGigaProcessor; } }; } // End llvm namespace |