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 0bf5846 commit aec3ec0Copy full SHA for aec3ec0
llvm/lib/Transforms/Utils/SCCPSolver.cpp
@@ -13,6 +13,7 @@
13
//===----------------------------------------------------------------------===//
14
15
#include "llvm/Transforms/Utils/SCCPSolver.h"
16
+#include "llvm/ADT/SetVector.h"
17
#include "llvm/Analysis/ConstantFolding.h"
18
#include "llvm/Analysis/InstructionSimplify.h"
19
#include "llvm/Analysis/ValueLattice.h"
@@ -418,7 +419,7 @@ class SCCPInstVisitor : public InstVisitor<SCCPInstVisitor> {
418
419
420
DenseMap<Function *, std::unique_ptr<PredicateInfo>> FnPredicateInfo;
421
- DenseMap<Value *, SmallPtrSet<User *, 2>> AdditionalUsers;
422
+ DenseMap<Value *, SmallSetVector<User *, 2>> AdditionalUsers;
423
424
LLVMContext &Ctx;
425
0 commit comments