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 | fff746c1b043635ca4bcc76494a47800c390031d (patch) | |
tree | 08ebd01147220cef5d79a99f991e0b4ef85d358b | |
parent | 1bda1452e3a71c665656ac9248c1ff22eedb0e73 (diff) | |
download | external_llvm-fff746c1b043635ca4bcc76494a47800c390031d.zip external_llvm-fff746c1b043635ca4bcc76494a47800c390031d.tar.gz external_llvm-fff746c1b043635ca4bcc76494a47800c390031d.tar.bz2 |
Tweak comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75391 91177308-0d34-0410-b5e6-96231b3b80d8
-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 372b197..ac203bd 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')) |