From 7dfb92b90b360198600477638a75fd45755d8b4e Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 12 Mar 2015 00:07:29 +0000 Subject: Fix FileCheck: substr() expect the length of the string as 2nd arg The code assumed that substr() was taking start,end while it takes start,length. From: Mehdi Amini llvm-svn: 231988 --- llvm/utils/FileCheck/FileCheck.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'llvm/utils') diff --git a/llvm/utils/FileCheck/FileCheck.cpp b/llvm/utils/FileCheck/FileCheck.cpp index 146b5121ac5..f7c0524a221 100644 --- a/llvm/utils/FileCheck/FileCheck.cpp +++ b/llvm/utils/FileCheck/FileCheck.cpp @@ -1053,7 +1053,6 @@ size_t CheckString::Check(const SourceMgr &SM, StringRef Buffer, PrintCheckFailed(SM, *this, MatchBuffer, VariableTable); return StringRef::npos; } - MatchPos += LastPos; // Similar to the above, in "label-scan mode" we can't yet handle CHECK-NEXT // or CHECK-NOT @@ -1076,7 +1075,7 @@ size_t CheckString::Check(const SourceMgr &SM, StringRef Buffer, return StringRef::npos; } - return MatchPos; + return LastPos + MatchPos; } bool CheckString::CheckNext(const SourceMgr &SM, StringRef Buffer) const { -- cgit v1.2.3