diff options
Diffstat (limited to 'llvm/lib/CodeGen/RegUsageInfoPropagate.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegUsageInfoPropagate.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp b/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp index 0205e6193741d..0c3e8a89c920e 100644 --- a/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp +++ b/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp @@ -26,7 +26,7 @@ #include "llvm/CodeGen/Passes.h" #include "llvm/CodeGen/RegisterUsageInfo.h" #include "llvm/IR/Module.h" -#include "llvm/PassAnalysisSupport.h" +#include "llvm/Pass.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetMachine.h" @@ -118,8 +118,8 @@ bool RegUsageInfoPropagation::runOnMachineFunction(MachineFunction &MF) { continue; LLVM_DEBUG( dbgs() - << "Call Instruction Before Register Usage Info Propagation : \n"); - LLVM_DEBUG(dbgs() << MI << "\n"); + << "Call Instruction Before Register Usage Info Propagation : \n" + << MI << "\n"); auto UpdateRegMask = [&](const Function &F) { const ArrayRef<uint32_t> RegMask = PRUI->getRegUsageInfo(F); @@ -140,8 +140,9 @@ bool RegUsageInfoPropagation::runOnMachineFunction(MachineFunction &MF) { } LLVM_DEBUG( - dbgs() << "Call Instruction After Register Usage Info Propagation : " - << MI << '\n'); + dbgs() + << "Call Instruction After Register Usage Info Propagation : \n" + << MI << '\n'); } } |