aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/FileCheck.cpp
diff options
context:
space:
mode:
authorThomas Preud'homme <thomasp@graphcore.ai>2019-08-08 13:56:59 +0000
committerThomas Preud'homme <thomasp@graphcore.ai>2019-08-08 13:56:59 +0000
commitb1add2b7748d742bc7064cf3cd9fd41199952944 (patch)
tree799fa1f574b120107aecc13aa5a59b4f98d6d9f3 /llvm/lib/Support/FileCheck.cpp
parent4f64f1ba3c540cddbcf3f7f5e5b8a2fd9ebbb416 (diff)
downloadllvm-b1add2b7748d742bc7064cf3cd9fd41199952944.zip
llvm-b1add2b7748d742bc7064cf3cd9fd41199952944.tar.gz
llvm-b1add2b7748d742bc7064cf3cd9fd41199952944.tar.bz2
[FileCheck] Add missing includes in header
Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk Subscribers: hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D65778 llvm-svn: 368297
Diffstat (limited to 'llvm/lib/Support/FileCheck.cpp')
-rw-r--r--llvm/lib/Support/FileCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/FileCheck.cpp b/llvm/lib/Support/FileCheck.cpp
index db02315..16a04bc 100644
--- a/llvm/lib/Support/FileCheck.cpp
+++ b/llvm/lib/Support/FileCheck.cpp
@@ -15,10 +15,10 @@
#include "llvm/Support/FileCheck.h"
#include "llvm/ADT/StringSet.h"
+#include "llvm/ADT/Twine.h"
#include "llvm/Support/FormatVariadic.h"
#include <cstdint>
#include <list>
-#include <map>
#include <tuple>
#include <utility>