aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/FileCheck.cpp
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2019-08-23 19:59:23 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2019-08-23 19:59:23 +0000
commitdc5f805d31f62e094bd3eb105b47620633f65e5b (patch)
tree90c02e8b643b8f5dbf98ac823afb2bfd07bdabca /llvm/lib/Support/FileCheck.cpp
parentbc173d4c515a461d2177121da8ef7657b6c5b8a7 (diff)
downloadllvm-dc5f805d31f62e094bd3eb105b47620633f65e5b.zip
llvm-dc5f805d31f62e094bd3eb105b47620633f65e5b.tar.gz
llvm-dc5f805d31f62e094bd3eb105b47620633f65e5b.tar.bz2
Do a sweep of symbol internalization. NFC.
llvm-svn: 369803
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 143f7a4..9310a79 100644
--- a/llvm/lib/Support/FileCheck.cpp
+++ b/llvm/lib/Support/FileCheck.cpp
@@ -125,7 +125,7 @@ FileCheckPattern::parseVariable(StringRef &Str, const SourceMgr &SM) {
// StringRef holding all characters considered as horizontal whitespaces by
// FileCheck input canonicalization.
-StringRef SpaceChars = " \t";
+constexpr StringLiteral SpaceChars = " \t";
// Parsing helper function that strips the first character in S and returns it.
static char popFront(StringRef &S) {