diff options
author | Kazu Hirata <kazu@google.com> | 2025-08-22 10:33:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-22 10:33:46 -0700 |
commit | 11b4f110e0f9f1a0f987faa121c594af1bcd43cc (patch) | |
tree | d3f66318503bbbaca1cf6d9bafab4ec796f3a307 /llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp | |
parent | 4b9c82881828b9274d652e3e8412fcabec19aa09 (diff) | |
download | llvm-11b4f110e0f9f1a0f987faa121c594af1bcd43cc.zip llvm-11b4f110e0f9f1a0f987faa121c594af1bcd43cc.tar.gz llvm-11b4f110e0f9f1a0f987faa121c594af1bcd43cc.tar.bz2 |
[llvm] Remove unused includes of SmallSet.h (NFC) (#154893)
We just replaced SmallSet<T *, N> with SmallPtrSet<T *, N>, bypassing
the redirection found in SmallSet.h. With that, we no longer need to
include SmallSet.h in many files.
Diffstat (limited to 'llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp b/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp index e218db3..060ca92 100644 --- a/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp +++ b/llvm/lib/Transforms/Utils/ScalarEvolutionExpander.cpp @@ -15,7 +15,6 @@ #include "llvm/Transforms/Utils/ScalarEvolutionExpander.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/ScopeExit.h" -#include "llvm/ADT/SmallSet.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Analysis/ScalarEvolutionPatternMatch.h" |