diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-20 18:09:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-20 18:09:18 +0000 |
commit | f9088885539eb6daab8a5c95e29d609ce4fefaf0 (patch) | |
tree | 64f5dfcec6f770d392720b3b3330c85c60ed506a | |
parent | 42db1a04ef97ba126898c24f7ee76dcd2716c71c (diff) |
Do not register ppc64 yet, as it breaks the SparcV9 backend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15955 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 084eb3d157..fa2455cc87 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -42,8 +42,11 @@ namespace { // Register the targets RegisterTarget<PPC32TargetMachine> X("ppc32", " PowerPC 32-bit (experimental)"); + +#if 0 RegisterTarget<PPC64TargetMachine> Y("ppc64", " PowerPC 64-bit (unimplemented)"); +#endif } PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name, |