diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-07-11 22:06:10 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-11 22:06:10 +0000 |
commit | e9e2733a04875bfab6596e362b37acd031f99010 (patch) | |
tree | 08ebd01147220cef5d79a99f991e0b4ef85d358b /utils/FileCheck/FileCheck.cpp | |
parent | 7cab893331aae0a4e8444bed4d97febd53c6a08f (diff) |
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/FileCheck/FileCheck.cpp')
-rw-r--r-- | utils/FileCheck/FileCheck.cpp | 4 |
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')) |