Skip to content

Commit ba8d9ce

Browse files
[ADT] Fix unused variable from #69528 (#114114)
Remove unused variable to fix build failures from bot.
1 parent 5c12434 commit ba8d9ce

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)