From 9d227af8f73301392d8b629d20f26e98ce96d5aa Mon Sep 17 00:00:00 2001 From: Dmitri Gribenko Date: Fri, 21 Sep 2012 15:26:34 +0000 Subject: [PATCH] Clarify comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164371 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 afbce35af5b..e79162867eb 100644 --- a/utils/FileCheck/FileCheck.cpp +++ b/utils/FileCheck/FileCheck.cpp @@ -470,7 +470,7 @@ static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) { continue; } - // If C is not a horizontal whitespace, skip it. + // If current char is not a horizontal whitespace, dump it to output as is. if (*Ptr != ' ' && *Ptr != '\t') { NewFile.push_back(*Ptr); continue; -- 2.11.0