diff options
author | Archibald Elliott <archibald.elliott@arm.com> | 2023-02-07 12:21:51 +0000 |
---|---|---|
committer | Archibald Elliott <archibald.elliott@arm.com> | 2023-02-07 12:39:46 +0000 |
commit | 62c7f035b4392c1933550eead6ddab35122720bc (patch) | |
tree | 9eefb48c19061ee9d1116474d8a835dc96a53119 /llvm/tools/llvm-objdump/llvm-objdump.cpp | |
parent | 2399497c9d68c946764e3089fb0b4c8d29166d67 (diff) | |
download | llvm-62c7f035b4392c1933550eead6ddab35122720bc.zip llvm-62c7f035b4392c1933550eead6ddab35122720bc.tar.gz llvm-62c7f035b4392c1933550eead6ddab35122720bc.tar.bz2 |
[NFC][TargetParser] Remove llvm/ADT/Triple.h
I also ran `git clang-format` to get the headers in the right order for
the new location, which has changed the order of other headers in two
files.
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.cpp')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.cpp b/llvm/tools/llvm-objdump/llvm-objdump.cpp index 9979a26..39fd91eb 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.cpp +++ b/llvm/tools/llvm-objdump/llvm-objdump.cpp @@ -30,7 +30,6 @@ #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/StringExtras.h" #include "llvm/ADT/StringSet.h" -#include "llvm/ADT/Triple.h" #include "llvm/ADT/Twine.h" #include "llvm/DebugInfo/DWARF/DWARFContext.h" #include "llvm/DebugInfo/Symbolize/SymbolizableModule.h" @@ -82,6 +81,7 @@ #include "llvm/Support/TargetSelect.h" #include "llvm/Support/WithColor.h" #include "llvm/Support/raw_ostream.h" +#include "llvm/TargetParser/Triple.h" #include <algorithm> #include <cctype> #include <cstring> |