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 /flang/lib/Frontend/CompilerInvocation.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 'flang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | flang/lib/Frontend/CompilerInvocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flang/lib/Frontend/CompilerInvocation.cpp b/flang/lib/Frontend/CompilerInvocation.cpp index 8bcc3f6..4136138 100644 --- a/flang/lib/Frontend/CompilerInvocation.cpp +++ b/flang/lib/Frontend/CompilerInvocation.cpp @@ -25,7 +25,6 @@ #include "clang/Driver/Options.h" #include "llvm/ADT/StringRef.h" #include "llvm/ADT/StringSwitch.h" -#include "llvm/ADT/Triple.h" #include "llvm/Option/Arg.h" #include "llvm/Option/ArgList.h" #include "llvm/Option/OptTable.h" @@ -35,6 +34,7 @@ #include "llvm/Support/Path.h" #include "llvm/Support/Process.h" #include "llvm/Support/raw_ostream.h" +#include "llvm/TargetParser/Triple.h" #include <memory> #include <optional> |