diff options
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index b4f6fa497f..3232b9e613 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -73,11 +73,14 @@ unsigned PPC32TargetMachine::getJITMatchQuality() { #endif } -/// addPassesToEmitAssembly - Add passes to the specified pass manager -/// to implement a static compiler for this target. +/// addPassesToEmitFile - Add passes to the specified pass manager to implement +/// a static compiler for this target. /// -bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, - std::ostream &Out) { +bool PowerPCTargetMachine::addPassesToEmitFile(PassManager &PM, + std::ostream &Out, + CodeGenFileType FileType) { + if (FileType != TargetMachine::AssemblyFile) return true; + bool LP64 = (0 != dynamic_cast<PPC64TargetMachine *>(this)); if (EnablePPCLSR) { |