Use function's argument instead of the global flag.

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
diff --git a/utils/FileCheck/FileCheck.cpp b/utils/FileCheck/FileCheck.cpp
index 769749e..c915653 100644
--- a/utils/FileCheck/FileCheck.cpp
+++ b/utils/FileCheck/FileCheck.cpp
@@ -670,11 +670,11 @@
 }
 
 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 @@
     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;