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
This commit is contained in:
Stephen Lin 2013-08-16 17:29:01 +00:00
parent bff3c587f6
commit 6d3aa547a5

View File

@ -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;
}