1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

properly wire up the instprinter to the ppc64 backend, down to 5 failures.

llvm-svn: 119081
This commit is contained in:
Chris Lattner 2010-11-14 21:42:53 +00:00
parent 27b65608d0
commit 3959bd7fb4

View File

@ -948,5 +948,5 @@ extern "C" void LLVMInitializePowerPCAsmPrinter() {
TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
TargetRegistry::RegisterMCInstPrinter(ThePPC32Target, createPPCMCInstPrinter);
TargetRegistry::RegisterMCInstPrinter(ThePPC64Target, createPPCMCInstPrinter);
}