diff options
author | Thomas Preud'homme <thomasp@graphcore.ai> | 2019-10-01 21:37:55 +0000 |
---|---|---|
committer | Thomas Preud'homme <thomasp@graphcore.ai> | 2019-10-01 21:37:55 +0000 |
commit | ed1178689f9f04b41519ec7fd7496ec21592aaf8 (patch) | |
tree | 83c6352016f256d9e8c294d34fdfa9813317ecb9 /llvm/lib/Support/FileCheck.cpp | |
parent | 9738fd63877136eb1ffffb74ad78ea77861c88fe (diff) | |
download | bcm5719-llvm-ed1178689f9f04b41519ec7fd7496ec21592aaf8.tar.gz bcm5719-llvm-ed1178689f9f04b41519ec7fd7496ec21592aaf8.zip |
[FileCheck] Move private interface to its own header
Summary:
Most of the class definition in llvm/include/llvm/Support/FileCheck.h
are actually implementation details that should not be relied upon. This
commit moves all of it in a new header file under
llvm/lib/Support/FileCheck. It also takes advantage of the code movement
to put the code into a new llvm::filecheck namespace.
Reviewers: jhenderson, chandlerc, jdenny, probinson, grimar, arichardson, rnk
Subscribers: hiraditya, llvm-commits, probinson, dblaikie, grimar, arichardson, tra, rnk, kristina, hfinkel, rogfer01, JonChesterfield
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D67649
llvm-svn: 373395
Diffstat (limited to 'llvm/lib/Support/FileCheck.cpp')
-rw-r--r-- | llvm/lib/Support/FileCheck.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/FileCheck.cpp b/llvm/lib/Support/FileCheck.cpp index 1925ad3e8cb..c3f537b3524 100644 --- a/llvm/lib/Support/FileCheck.cpp +++ b/llvm/lib/Support/FileCheck.cpp @@ -14,6 +14,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Support/FileCheck.h" +#include "FileCheckImpl.h" #include "llvm/ADT/StringSet.h" #include "llvm/ADT/Twine.h" #include "llvm/Support/FormatVariadic.h" |