diff options
author | Owen Rodley <owen.rodley@gmail.com> | 2018-09-28 04:51:45 +0000 |
---|---|---|
committer | Owen Rodley <owen.rodley@gmail.com> | 2018-09-28 04:51:45 +0000 |
commit | 73d18aa028b367ef68c543f15f10427a4d1cb471 (patch) | |
tree | 9248b55f5fa857b3585d3a9a4dd131f8ad8d2511 /llvm/tools/llvm-mca/llvm-mca.cpp | |
parent | 13a6750c2e76991723c8aa9c48c37fb0a7e3a8d0 (diff) | |
download | bcm5719-llvm-73d18aa028b367ef68c543f15f10427a4d1cb471.tar.gz bcm5719-llvm-73d18aa028b367ef68c543f15f10427a4d1cb471.zip |
Test commit. NFC.
llvm-svn: 343296
Diffstat (limited to 'llvm/tools/llvm-mca/llvm-mca.cpp')
-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); |