summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-15 01:24:23 +0000
committerChris Lattner <sabre@nondot.org>2006-07-15 01:24:23 +0000
commite1758d4cef94692a7164f57d8b30bd8085d921fa (patch)
treea3466371d5485b230ace4bebc440b990c4a46119 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
parent45fcadc9f0daec35a48d5346b49effe03bb42237 (diff)
downloadbcm5719-llvm-e1758d4cef94692a7164f57d8b30bd8085d921fa.tar.gz
bcm5719-llvm-e1758d4cef94692a7164f57d8b30bd8085d921fa.zip
Remove what little AIX support we have. It has never been tested and isn't
complete. llvm-svn: 29156
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r--llvm/lib/Target/PowerPC/PPCTargetMachine.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
index 0bc9e7e5b07..12c22e7dd80 100644
--- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
+++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
@@ -146,12 +146,7 @@ bool PPCTargetMachine::addPassesToEmitFile(PassManager &PM,
// Must run branch selection immediately preceding the asm printer
PM.add(createPPCBranchSelectionPass());
- // Decide which asm printer to use. If the user has not specified one on
- // the command line, choose whichever one matches the default (current host).
- if (Subtarget.isAIX())
- PM.add(createAIXAsmPrinter(Out, *this));
- else
- PM.add(createDarwinAsmPrinter(Out, *this));
+ PM.add(createDarwinAsmPrinter(Out, *this));
PM.add(createMachineCodeDeleter());
return false;
OpenPOWER on IntegriCloud