diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index afbce35af5b0..e79162867eba 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/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;