second half of commit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78744 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-08-11 22:52:15 +00:00
parent 5b67bb1922
commit 09652df5fc

View File

@ -28,8 +28,8 @@ extern "C" void LLVMInitializePowerPCTarget() {
const TargetAsmInfo *PPCTargetMachine::createTargetAsmInfo() const {
if (Subtarget.isDarwin())
return new PPCDarwinTargetAsmInfo(*this);
return new PPCLinuxTargetAsmInfo(*this);
return new PPCDarwinTargetAsmInfo(Subtarget.isPPC64());
return new PPCLinuxTargetAsmInfo(Subtarget.isPPC64());
}
PPCTargetMachine::PPCTargetMachine(const Target &T, const std::string &TT,