[PowerPC] support powerpc64le as syntax-checking target (pass2)

Register the Asm Printer for the ppc64le target.

This fills in a spot that was missed in an earlier change (r187179).



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202861 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Will Schmidt 2014-03-04 16:51:52 +00:00
parent f41c05c7ca
commit db09f822fd

View File

@ -1135,4 +1135,5 @@ static AsmPrinter *createPPCAsmPrinterPass(TargetMachine &tm,
extern "C" void LLVMInitializePowerPCAsmPrinter() {
TargetRegistry::RegisterAsmPrinter(ThePPC32Target, createPPCAsmPrinterPass);
TargetRegistry::RegisterAsmPrinter(ThePPC64Target, createPPCAsmPrinterPass);
TargetRegistry::RegisterAsmPrinter(ThePPC64LETarget, createPPCAsmPrinterPass);
}