From: Dan Gohman Date: Thu, 20 Nov 2008 19:54:21 +0000 (+0000) Subject: Add another machine-code printing pass when post-pass scheduling is run. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5ce0973f7f4d149f986d16d1a1f79b131fd70423;p=oota-llvm.git Add another machine-code printing pass when post-pass scheduling is run. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59746 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 2397a160e93..e10be696142 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -226,9 +226,13 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, bool Fast) { PM.add(createMachineFunctionPrinterPass(cerr)); // Second pass scheduler. - if (!Fast && !DisablePostRAScheduler) + if (!Fast && !DisablePostRAScheduler) { PM.add(createPostRAScheduler()); + if (PrintMachineCode) + PM.add(createMachineFunctionPrinterPass(cerr)); + } + // Branch folding must be run after regalloc and prolog/epilog insertion. if (!Fast) PM.add(createBranchFoldingPass(getEnableTailMergeDefault()));