From: Dmitri Gribenko Date: Fri, 21 Sep 2012 15:26:34 +0000 (+0000) Subject: Clarify comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=9d227af8f73301392d8b629d20f26e98ce96d5aa Clarify comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164371 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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;