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 | 8bda49a827cea3f5df78b3a12f50d572ea38e14d (patch) | |
tree | 9875ce9616eecc05fea83c9f062b6fb089269d5c /llvm/utils/FileCheck/FileCheck.cpp | |
parent | cfd6800c76b0eb6aaf9f8238004091486dde6e1c (diff) | |
download | bcm5719-llvm-8bda49a827cea3f5df78b3a12f50d572ea38e14d.tar.gz bcm5719-llvm-8bda49a827cea3f5df78b3a12f50d572ea38e14d.zip |
Tweak comment.
llvm-svn: 75391
Diffstat (limited to 'llvm/utils/FileCheck/FileCheck.cpp')
-rw-r--r-- | llvm/utils/FileCheck/FileCheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index 372b1978439..ac203bd5173 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/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')) |