Skip to content

Commit 0e62c74

Browse files
authored
[analyzer][NFC] Remove a redundant container lookup (#125064)
I found this using my experimental checker present at: https://github.com/steakhal/llvm-project/tree/bb/add-redundant-lookup-checker The idea for looking for redundant container lookups was inspired by #123376 If there is interest, I could think of upstreaming this alpha checker. (For the StaticAnalyzer sources it was the only TP, and I had no FPs from the checker btw.)
1 parent b4d52a9 commit 0e62c74

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -488,15 +488,17 @@ ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks,
488488
while (!WL2.empty()) {
489489
const ExplodedNode *N = WL2.pop_back_val();
490490

491+
auto [Place, Inserted] = Pass2.try_emplace(N);
492+
491493
// Skip this node if we have already processed it.
492-
if (Pass2.contains(N))
494+
if (!Inserted)
493495
continue;
494496

495497
// Create the corresponding node in the new graph and record the mapping
496498
// from the old node to the new node.
497499
ExplodedNode *NewN = G->createUncachedNode(N->getLocation(), N->State,
498500
N->getID(), N->isSink());
499-
Pass2[N] = NewN;
501+
Place->second = NewN;
500502

501503
// Also record the reverse mapping from the new node to the old node.
502504
if (InverseMap) (*InverseMap)[NewN] = N;

0 commit comments

Comments
 (0)