summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-07-11 22:06:10 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-07-11 22:06:10 +0000
commite9e2733a04875bfab6596e362b37acd031f99010 (patch)
tree08ebd01147220cef5d79a99f991e0b4ef85d358b /utils
parent7cab893331aae0a4e8444bed4d97febd53c6a08f (diff)
downloadllvm-e9e2733a04875bfab6596e362b37acd031f99010.tar.gz
llvm-e9e2733a04875bfab6596e362b37acd031f99010.tar.bz2
llvm-e9e2733a04875bfab6596e362b37acd031f99010.tar.xz
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/FileCheck/FileCheck.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp
index 372b197843..ac203bd517 100644
--- a/utils/FileCheck/FileCheck.cpp
+++ b/utils/FileCheck/FileCheck.cpp
@@ -233,8 +233,8 @@ int main(int argc, char **argv) {
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'))