diff options
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp index ca5abb2a8c5..438fd076248 100644 --- a/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -91,7 +91,7 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, // Must run branch selection immediately preceding the printer PM.add(createPPCBranchSelectionPass()); - PM.add(createPPCCodePrinterPass(Out, *this)); + PM.add(createPPCAsmPrinterPass(Out, *this)); PM.add(createMachineCodeDeleter()); return false; } |