Verfier: Move the reset of DebugFnArgs closer to other similar operations.
NFC

llvm-svn: 297160
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp
index 4c80802..19800ce 100644
--- a/llvm/lib/IR/Verifier.cpp
+++ b/llvm/lib/IR/Verifier.cpp
@@ -345,6 +345,7 @@
     visit(const_cast<Function &>(F));
     verifySiblingFuncletUnwinds();
     InstsInThisBlock.clear();
+    DebugFnArgs.clear();
     LandingPadResultTy = nullptr;
     SawFrameEscape = false;
     SiblingFuncletInfo.clear();
@@ -1951,8 +1952,6 @@
 // visitFunction - Verify that a function is ok.
 //
 void Verifier::visitFunction(const Function &F) {
-  DebugFnArgs.clear();
-
   visitGlobalValue(F);
 
   // Check function arguments.