diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-24 09:37:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-24 09:37:35 -0700 |
commit | 13c3df9a36d142b75c78819637ae3e467755495e (patch) | |
tree | b0539e042f7d667781e3d1e48e5dbe9db14a594d /llvm/lib/Bitcode/Reader/MetadataLoader.cpp | |
parent | 47b9837dad85be73fdb28c211c8d849fafcec1ec (diff) | |
download | llvm-13c3df9a36d142b75c78819637ae3e467755495e.zip llvm-13c3df9a36d142b75c78819637ae3e467755495e.tar.gz llvm-13c3df9a36d142b75c78819637ae3e467755495e.tar.bz2 |
[Bitcode] Remove unused includes (NFC) (#141354)
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/Bitcode/Reader/MetadataLoader.cpp')
-rw-r--r-- | llvm/lib/Bitcode/Reader/MetadataLoader.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Bitcode/Reader/MetadataLoader.cpp b/llvm/lib/Bitcode/Reader/MetadataLoader.cpp index c724488..1cd1797 100644 --- a/llvm/lib/Bitcode/Reader/MetadataLoader.cpp +++ b/llvm/lib/Bitcode/Reader/MetadataLoader.cpp @@ -21,7 +21,6 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Twine.h" -#include "llvm/ADT/ilist_iterator.h" #include "llvm/BinaryFormat/Dwarf.h" #include "llvm/Bitcode/BitcodeReader.h" #include "llvm/Bitcode/LLVMBitCodes.h" @@ -44,7 +43,6 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/type_traits.h" #include <algorithm> #include <cassert> @@ -57,7 +55,6 @@ #include <optional> #include <string> #include <tuple> -#include <type_traits> #include <utility> #include <vector> namespace llvm { |