1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Use function's argument instead of the global flag.

For now it happens the argument is always the same.

llvm-svn: 190896
This commit is contained in:
Matt Arsenault 2013-09-17 22:45:57 +00:00
parent e35660ff49
commit 38f588b81a

View File

@ -670,11 +670,11 @@ static bool IsPartOfWord(char c) {
}
static Check::CheckType FindCheckType(StringRef &Buffer, StringRef Prefix) {
char NextChar = Buffer[CheckPrefix.size()];
char NextChar = Buffer[Prefix.size()];
// Verify that the : is present after the prefix.
if (NextChar == ':') {
Buffer = Buffer.substr(CheckPrefix.size() + 1);
Buffer = Buffer.substr(Prefix.size() + 1);
return Check::CheckPlain;
}
@ -683,7 +683,7 @@ static Check::CheckType FindCheckType(StringRef &Buffer, StringRef Prefix) {
return Check::CheckNone;
}
StringRef Rest = Buffer.drop_front(CheckPrefix.size() + 1);
StringRef Rest = Buffer.drop_front(Prefix.size() + 1);
if (Rest.startswith("NEXT:")) {
Buffer = Rest.drop_front(sizeof("NEXT:") - 1);
return Check::CheckNext;