diff options
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/llvm-mca/llvm-mca.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-mca/llvm-mca.cpp b/llvm/tools/llvm-mca/llvm-mca.cpp index a7b543acafd..9466ae7e84d 100644 --- a/llvm/tools/llvm-mca/llvm-mca.cpp +++ b/llvm/tools/llvm-mca/llvm-mca.cpp @@ -214,7 +214,7 @@ public: // Skip spaces and tabs unsigned Position = Comment.find_first_not_of(" \t"); if (Position >= Comment.size()) - // we reached the end of the comment. Bail out. + // We reached the end of the comment. Bail out. return; Comment = Comment.drop_front(Position); |