From 398b32a2f4ea0a9760a0dff57e3c0938d4e07478 Mon Sep 17 00:00:00 2001 From: Stephen Lin Date: Fri, 16 Aug 2013 17:29:01 +0000 Subject: [PATCH] FileCheck: Fix stray quote in CHECK-LABEL error message. llvm-svn: 188564 --- llvm/utils/FileCheck/FileCheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index 82e8057..37c7874a 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/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; } -- 2.7.4