diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-02-12 12:41:55 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-02-12 20:49:08 +0900 |
commit | bb5f79158b71082852c8519ae5da182c5ca6cc05 (patch) | |
tree | de8e72343f587e8f95416d2265a80dc258502a18 /llvm/utils/TableGen/CodeGenTarget.cpp | |
parent | 2d570bab4f996393ad060443afd71d25b9582c13 (diff) | |
download | llvm-bb5f79158b71082852c8519ae5da182c5ca6cc05.zip llvm-bb5f79158b71082852c8519ae5da182c5ca6cc05.tar.gz llvm-bb5f79158b71082852c8519ae5da182c5ca6cc05.tar.bz2 |
llvm-tblgen: Apply IWYU in some files
Diffstat (limited to 'llvm/utils/TableGen/CodeGenTarget.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenTarget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/CodeGenTarget.cpp b/llvm/utils/TableGen/CodeGenTarget.cpp index b5fb830..f500d30 100644 --- a/llvm/utils/TableGen/CodeGenTarget.cpp +++ b/llvm/utils/TableGen/CodeGenTarget.cpp @@ -18,10 +18,15 @@ #include "CodeGenIntrinsics.h" #include "CodeGenSchedule.h" #include "llvm/ADT/STLExtras.h" +#include "llvm/ADT/Twine.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/ModRef.h" #include "llvm/TableGen/Error.h" #include "llvm/TableGen/Record.h" #include <algorithm> +#include <iterator> +#include <tuple> using namespace llvm; cl::OptionCategory AsmParserCat("Options for -gen-asm-parser"); |