From 1242018033a7f1a3b4a1a830746afaa7b6719c07 Mon Sep 17 00:00:00 2001 From: Georgii Rymar Date: Wed, 15 Apr 2020 16:55:48 +0300 Subject: [PATCH] [FileCheck] - Refine the comment. NFC. It did not mention the `--implicit-check-not` before, though it should (https://reviews.llvm.org/D78024#inline-715166). --- llvm/lib/Support/FileCheck.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/lib/Support/FileCheck.cpp b/llvm/lib/Support/FileCheck.cpp index 08c0e8f..0913b97 100644 --- a/llvm/lib/Support/FileCheck.cpp +++ b/llvm/lib/Support/FileCheck.cpp @@ -1398,8 +1398,8 @@ bool FileCheck::readCheckFile(SourceMgr &SM, StringRef Buffer, DagNotMatches = ImplicitNegativeChecks; } - // Add an EOF pattern for any trailing CHECK-DAG/-NOTs, and use the first - // prefix as a filler for the error message. + // Add an EOF pattern for any trailing --implicit-check-not/CHECK-DAG/-NOTs, + // and use the first prefix as a filler for the error message. if (!DagNotMatches.empty()) { CheckStrings->emplace_back( Pattern(Check::CheckEOF, PatternContext.get(), LineNumber + 1), -- 2.7.4