diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-24 09:37:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-24 09:37:37 -0700 |
commit | 64e89353b2fbb246cca2ededc994154ce14e18ab (patch) | |
tree | 3495a02fea4c4a2770f7be31bdab1b4756aaf251 /llvm/lib/LTO/LTOBackend.cpp | |
parent | 13c3df9a36d142b75c78819637ae3e467755495e (diff) | |
download | llvm-64e89353b2fbb246cca2ededc994154ce14e18ab.zip llvm-64e89353b2fbb246cca2ededc994154ce14e18ab.tar.gz llvm-64e89353b2fbb246cca2ededc994154ce14e18ab.tar.bz2 |
[LTO] Remove unused includes (NFC) (#141355)
These are identified by misc-include-cleaner. I've filtered out those
that break builds. Also, I'm staying away from llvm-config.h,
config.h, and Compiler.h, which likely cause platform- or
compiler-specific build failures.
Diffstat (limited to 'llvm/lib/LTO/LTOBackend.cpp')
-rw-r--r-- | llvm/lib/LTO/LTOBackend.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/LTO/LTOBackend.cpp b/llvm/lib/LTO/LTOBackend.cpp index b7db70b..5e8cd12 100644 --- a/llvm/lib/LTO/LTOBackend.cpp +++ b/llvm/lib/LTO/LTOBackend.cpp @@ -35,7 +35,6 @@ #include "llvm/Support/FileSystem.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/Path.h" -#include "llvm/Support/Program.h" #include "llvm/Support/ThreadPool.h" #include "llvm/Support/ToolOutputFile.h" #include "llvm/Support/VirtualFileSystem.h" @@ -43,7 +42,6 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/TargetParser/SubtargetFeature.h" #include "llvm/Transforms/IPO/WholeProgramDevirt.h" -#include "llvm/Transforms/Scalar/LoopPassManager.h" #include "llvm/Transforms/Utils/FunctionImportUtils.h" #include "llvm/Transforms/Utils/SplitModule.h" #include <optional> |