diff options
author | Eric Christopher <echristo@gmail.com> | 2014-08-09 04:38:56 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-08-09 04:38:56 +0000 |
commit | 3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6 (patch) | |
tree | a659868dc18f46c45c749eb6b638d1e99ec3bee3 /llvm/lib/Target/PowerPC/PPCSubtarget.h | |
parent | e950b6776b37fcc8b6bd391dbe22b613ed65aae4 (diff) | |
download | bcm5719-llvm-3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6.tar.gz bcm5719-llvm-3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6.zip |
Remove extraneous 64-bit argument to the PPC TargetMachine constructor
and update initialization.
llvm-svn: 215280
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index 374962de427..7915e968fa4 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -66,6 +66,9 @@ class TargetMachine; class PPCSubtarget : public PPCGenSubtargetInfo { protected: + /// TargetTriple - What processor and OS we're targeting. + Triple TargetTriple; + /// stackAlignment - The minimum alignment known to hold of the stack frame on /// entry to the function and which must be maintained by every function. unsigned StackAlignment; @@ -107,9 +110,6 @@ protected: bool IsJITCodeModel; bool IsLittleEndian; - /// TargetTriple - What processor and OS we're targeting. - Triple TargetTriple; - /// OptLevel - What default optimization level we're emitting code for. CodeGenOpt::Level OptLevel; @@ -131,7 +131,7 @@ public: /// of the specified triple. /// PPCSubtarget(const std::string &TT, const std::string &CPU, - const std::string &FS, PPCTargetMachine &TM, bool is64Bit, + const std::string &FS, PPCTargetMachine &TM, CodeGenOpt::Level OptLevel); /// ParseSubtargetFeatures - Parses features string setting specified |