FileCheck: remove useless 'continue' at the end of a 'while(){}' loop.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dmitri Gribenko 2012-11-15 16:50:59 +00:00
parent b983f5d4ce
commit 65f3f32100

View File

@ -256,7 +256,6 @@ bool Pattern::ParsePattern(StringRef PatternStr, SourceMgr &SM,
FixedMatchEnd = std::min(FixedMatchEnd, PatternStr.find("[["));
AddFixedStringToRegEx(PatternStr.substr(0, FixedMatchEnd), RegExStr);
PatternStr = PatternStr.substr(FixedMatchEnd);
continue;
}
return false;