diff options
author | serge-sans-paille <sguelton@redhat.com> | 2022-03-01 14:28:22 +0100 |
---|---|---|
committer | serge-sans-paille <sguelton@redhat.com> | 2022-03-01 21:00:07 +0100 |
commit | a494ae43bef09c8d0f6a6a98e92f3a89758247d5 (patch) | |
tree | 596a18b1d495892468c7f511736429f344d9d8c6 /llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp | |
parent | eeaca53df7a030862bd1160950a6264aeb605cc6 (diff) | |
download | llvm-a494ae43bef09c8d0f6a6a98e92f3a89758247d5.zip llvm-a494ae43bef09c8d0f6a6a98e92f3a89758247d5.tar.gz llvm-a494ae43bef09c8d0f6a6a98e92f3a89758247d5.tar.bz2 |
Cleanup includes: TransformsUtils
Estimation on the impact on preprocessor output:
before: 1065307662
after: 1064800684
Discourse thread: https://discourse.llvm.org/t/include-what-you-use-include-cleanup
Differential Revision: https://reviews.llvm.org/D120741
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp b/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp index bb719a4..0fa6f02 100644 --- a/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp +++ b/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp @@ -20,20 +20,18 @@ // //===----------------------------------------------------------------------===// -#include "llvm/ADT/SmallPtrSet.h" #include "llvm/ADT/Statistic.h" +#include "llvm/Analysis/DomTreeUpdater.h" #include "llvm/Analysis/InstructionSimplify.h" #include "llvm/Analysis/LoopIterator.h" #include "llvm/Analysis/ScalarEvolution.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/Dominators.h" #include "llvm/IR/MDBuilder.h" -#include "llvm/IR/Metadata.h" #include "llvm/IR/Module.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/raw_ostream.h" -#include "llvm/Transforms/Utils.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" #include "llvm/Transforms/Utils/Cloning.h" #include "llvm/Transforms/Utils/Local.h" |