diff options
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/RegAllocLinearScan.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/llvm/lib/CodeGen/RegAllocLinearScan.cpp b/llvm/lib/CodeGen/RegAllocLinearScan.cpp index 9f08b1db09f..bc9febff59a 100644 --- a/llvm/lib/CodeGen/RegAllocLinearScan.cpp +++ b/llvm/lib/CodeGen/RegAllocLinearScan.cpp @@ -233,6 +233,7 @@ unsigned RALinScan::attemptTrivialCoalescing(LiveInterval &cur, unsigned Reg) {    // Try to coalesce.    if (!li_->conflictsWithPhysRegDef(cur, *vrm_, SrcReg)) { +    DOUT << "Coalescing: " << cur << " -> " << mri_->getName(SrcReg) << '\n';      vrm_->clearVirt(cur.reg);      vrm_->assignVirt2Phys(cur.reg, SrcReg);      ++NumCoalesce; | 

