Small code cleanup.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72057 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 0e2e39e..5ffe1fd 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -2463,15 +2463,10 @@
           SmallSet<const GlobalVariable *, 32> >::iterator
           IP = InlinedParamMap.find(V);
 
-        if (IP != InlinedParamMap.end()) {
-          SmallSet<const GlobalVariable*, 32> &S = IP->second;
-
-          if (S.count(GV) > 0) {
-            if (TimePassesIsEnabled)
-              DebugTimer->stopTimer();
-            return;
-          }
-
+        if (IP != InlinedParamMap.end() && IP->second.count(GV) > 0) {
+          if (TimePassesIsEnabled)
+            DebugTimer->stopTimer();
+          return;
         }
 
         // or GV is an inlined local variable.