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 13cf694 commit de4a96bCopy full SHA for de4a96b
llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp
@@ -1310,7 +1310,7 @@ struct TransformDFA {
1310
1311
// Remove any incoming values that come from an invalid predecessor
1312
for (PHINode &Phi : BB->phis())
1313
- Phi.removeIncomingValueIf([&](uint Index) {
+ Phi.removeIncomingValueIf([&](unsigned Index) {
1314
BasicBlock *IncomingBB = Phi.getIncomingBlock(Index);
1315
return !isPredecessor(BB, IncomingBB);
1316
});
0 commit comments