Skip to content

Commit f270da6

Browse files
committed
RegisterCoalescer: Add LaneMask to debug printing
1 parent 8116635 commit f270da6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/RegisterCoalescer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2885,7 +2885,8 @@ bool JoinVals::resolveConflicts(JoinVals &Other) {
28852885
if (V.Resolution != CR_Unresolved)
28862886
continue;
28872887
LLVM_DEBUG(dbgs() << "\t\tconflict at " << printReg(Reg) << ':' << i << '@'
2888-
<< LR.getValNumInfo(i)->def << '\n');
2888+
<< LR.getValNumInfo(i)->def
2889+
<< ' ' << PrintLaneMask(LaneMask) << '\n');
28892890
if (SubRangeJoin)
28902891
return false;
28912892

0 commit comments

Comments
 (0)