From: Chris Lattner Date: Sun, 14 Nov 2010 21:42:53 +0000 (+0000) Subject: properly wire up the instprinter to the ppc64 backend, down to 5 failures. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fd6688f59aac65008f1a1ae6ce0529c72288361c;p=oota-llvm.git 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 --- diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index 4577232f3b8..039bb4dffac 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); }