Skip to content

Commit 0e1e7a0

Browse files
[ADT] Fix unused variable from llvm#69528
Remove unused variable to fix build failures from bot.
1 parent b9978f8 commit 0e1e7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Support/TrieRawHashMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ unsigned ThreadSafeTrieRawHashMapBase::getNumSlotUsed(
424424
return 0;
425425
unsigned Num = 0;
426426
for (unsigned I = 0, E = S->size(); I < E; ++I)
427-
if (auto *E = S->load(I))
427+
if (S->load(I))
428428
++Num;
429429
return Num;
430430
}

0 commit comments

Comments
 (0)