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/PPCTargetMachine.cpp | |
parent | e950b6776b37fcc8b6bd391dbe22b613ed65aae4 (diff) | |
download | llvm-3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6.zip llvm-3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6.tar.gz llvm-3770cf5961b34d0c8711fd7aab3f12ea4a7fcdf6.tar.bz2 |
Remove extraneous 64-bit argument to the PPC TargetMachine constructor
and update initialization.
llvm-svn: 215280
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index 9563b90..de6dca4 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -40,9 +40,9 @@ extern "C" void LLVMInitializePowerPCTarget() { PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, - CodeGenOpt::Level OL, bool is64Bit) + CodeGenOpt::Level OL) : LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL), - Subtarget(TT, CPU, FS, *this, is64Bit, OL) { + Subtarget(TT, CPU, FS, *this, OL) { initAsmInfo(); } @@ -53,7 +53,7 @@ PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) - : PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) { + : PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) { } void PPC64TargetMachine::anchor() { } @@ -63,7 +63,7 @@ PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) - : PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, true) { + : PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) { } |