aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-rc
diff options
context:
space:
mode:
authorArchibald Elliott <archibald.elliott@arm.com>2023-02-07 12:21:51 +0000
committerArchibald Elliott <archibald.elliott@arm.com>2023-02-07 12:39:46 +0000
commit62c7f035b4392c1933550eead6ddab35122720bc (patch)
tree9eefb48c19061ee9d1116474d8a835dc96a53119 /llvm/tools/llvm-rc
parent2399497c9d68c946764e3089fb0b4c8d29166d67 (diff)
downloadllvm-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-rc')
-rw-r--r--llvm/tools/llvm-rc/llvm-rc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-rc/llvm-rc.cpp b/llvm/tools/llvm-rc/llvm-rc.cpp
index 8e525bd..0737255 100644
--- a/llvm/tools/llvm-rc/llvm-rc.cpp
+++ b/llvm/tools/llvm-rc/llvm-rc.cpp
@@ -17,7 +17,6 @@
#include "ResourceScriptStmt.h"
#include "ResourceScriptToken.h"
-#include "llvm/ADT/Triple.h"
#include "llvm/Object/WindowsResource.h"
#include "llvm/Option/Arg.h"
#include "llvm/Option/ArgList.h"
@@ -35,6 +34,7 @@
#include "llvm/Support/Signals.h"
#include "llvm/Support/StringSaver.h"
#include "llvm/Support/raw_ostream.h"
+#include "llvm/TargetParser/Triple.h"
#include <algorithm>
#include <system_error>