From 6d3aa547a522ae53c3aff6b40f0a23f9a22dcd87 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188564 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/FileCheck/FileCheck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp index 82e80574d27..37c7874aa20 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; } -- 2.34.1