Disable PPC64 backend by default because LLC cannot choose automatically between

SparcV9 and PowerPC64 without target triples, since they are both 64-bit
big-endian targets.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15688 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-08-12 17:16:43 +00:00
parent ee45f4cbe4
commit f5f70685b6

View File

@ -41,8 +41,8 @@ namespace {
// Register the targets
RegisterTarget<PPC32TargetMachine>
X("ppc32", " PowerPC 32-bit (experimental)");
RegisterTarget<PPC64TargetMachine>
Y("ppc64", " PowerPC 64-bit (unimplemented)");
//RegisterTarget<PPC64TargetMachine>
//Y("ppc64", " PowerPC 64-bit (unimplemented)");
}
PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,