Skip to content

Commit de4a96b

Browse files
committed
resolve comment
1 parent 13cf694 commit de4a96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/Scalar/DFAJumpThreading.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1310,7 +1310,7 @@ struct TransformDFA {
13101310

13111311
// Remove any incoming values that come from an invalid predecessor
13121312
for (PHINode &Phi : BB->phis())
1313-
Phi.removeIncomingValueIf([&](uint Index) {
1313+
Phi.removeIncomingValueIf([&](unsigned Index) {
13141314
BasicBlock *IncomingBB = Phi.getIncomingBlock(Index);
13151315
return !isPredecessor(BB, IncomingBB);
13161316
});

0 commit comments

Comments
 (0)