aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-14 21:42:53 +0000
committerChris Lattner <sabre@nondot.org>2010-11-14 21:42:53 +0000
commitfd6688f59aac65008f1a1ae6ce0529c72288361c (patch)
tree228e70b0a9eb3f62dd5c6bbce823b0f1a80cbd26 /lib
parent2e35248f14ac449774de9727b460469fc3c93249 (diff)
downloadexternal_llvm-fd6688f59aac65008f1a1ae6ce0529c72288361c.zip
external_llvm-fd6688f59aac65008f1a1ae6ce0529c72288361c.tar.gz
external_llvm-fd6688f59aac65008f1a1ae6ce0529c72288361c.tar.bz2
properly wire up the instprinter to the ppc64 backend, down to 5 failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/PowerPC/PPCAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp
index 4577232..039bb4d 100644
--- a/lib/Target/PowerPC/PPCAsmPrinter.cpp
+++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp
@@ -948,5 +948,5 @@ extern "C" void LLVMInitializePowerPCAsmPrinter() {
TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
- TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
+ TargetRegistry::RegisterMCInstPrinter(ThePPC64Target, createPPCMCInstPrinter);
}