summaryrefslogtreecommitdiff
path: root/utils/FileCheck
diff options
context:
space:
mode:
authorStephen Lin <stephenwlin@gmail.com>2013-08-16 17:29:01 +0000
committerStephen Lin <stephenwlin@gmail.com>2013-08-16 17:29:01 +0000
commit6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87 (patch)
treec987b30c72e9555fa188f9f0d461004ede6db322 /utils/FileCheck
parentbff3c587f68530faa1d2be962255254e9adce264 (diff)
downloadllvm-6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87.tar.gz
llvm-6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87.tar.bz2
llvm-6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87.tar.xz
FileCheck: Fix stray quote in CHECK-LABEL error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188564 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/FileCheck')
-rw-r--r--utils/FileCheck/FileCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp
index 82e80574d2..37c7874aa2 100644
--- a/utils/FileCheck/FileCheck.cpp
+++ b/utils/FileCheck/FileCheck.cpp
@@ -768,7 +768,7 @@ static bool ReadCheckFile(SourceMgr &SM,
SM.PrintMessage(SMLoc::getFromPointer(CheckPrefixStart),
SourceMgr::DK_Error,
"found '"+CheckPrefix+"-LABEL:' with variable definition"
- " or use'");
+ " or use");
return true;
}