Use function's argument instead of the global flag.
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Tue, 17 Sep 2013 22:45:57 +0000 (22:45 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Tue, 17 Sep 2013 22:45:57 +0000 (22:45 +0000)
For now it happens the argument is always the same.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190896 91177308-0d34-0410-b5e6-96231b3b80d8

utils/FileCheck/FileCheck.cpp

index 769749e024054617099297435f86e0b8570dab52..c91565378b45525856cebeaa04de5d8600181f59 100644 (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;