[llvm-commits] [llvm] r75391 - /llvm/trunk/utils/FileCheck/FileCheck.cpp
Daniel Dunbar
daniel at zuster.org
Sat Jul 11 15:06:11 PDT 2009
Author: ddunbar
Date: Sat Jul 11 17:06:10 2009
New Revision: 75391
URL: http://llvm.org/viewvc/llvm-project?rev=75391&view=rev
Log:
Tweak comment.
Modified:
llvm/trunk/utils/FileCheck/FileCheck.cpp
Modified: llvm/trunk/utils/FileCheck/FileCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/FileCheck/FileCheck.cpp?rev=75391&r1=75390&r2=75391&view=diff
==============================================================================
--- llvm/trunk/utils/FileCheck/FileCheck.cpp (original)
+++ llvm/trunk/utils/FileCheck/FileCheck.cpp Sat Jul 11 17:06:10 2009
@@ -233,8 +233,8 @@
SM.PrintMessage(CheckStr.second, "expected string not found in input",
"error");
- // Print the scanning from here line. If the current position is at the end
- // of a line, advance to the start of the next line.
+ // Print the "scanning from here" line. If the current position is at the
+ // end of a line, advance to the start of the next line.
const char *Scan = CurPtr;
while (Scan != BufferEnd &&
(*Scan == ' ' || *Scan == '\t'))
More information about the llvm-commits
mailing list