We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a971003 commit ec6dc30Copy full SHA for ec6dc30
llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
@@ -136,7 +136,8 @@ bool RegBankSelect::repairReg(
136
RegBankSelect::RepairingPlacement &RepairPt,
137
const iterator_range<SmallVectorImpl<unsigned>::const_iterator> &NewVRegs) {
138
139
- assert(ValMapping.NumBreakDowns == size(NewVRegs) && "need new vreg for each breakdown");
+ assert(ValMapping.NumBreakDowns == (unsigned)size(NewVRegs) &&
140
+ "need new vreg for each breakdown");
141
142
// An empty range of new register means no repairing.
143
assert(!empty(NewVRegs) && "We should not have to repair");
0 commit comments