From: Bill Wendling Date: Mon, 18 May 2009 22:33:01 +0000 (+0000) Subject: Small code cleanup. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cde5d63d909c2c3b9c2a30cef107f77a7a556deb;p=oota-llvm.git 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 0e2e39eea23..5ffe1fdf160 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2463,15 +2463,10 @@ void DwarfDebug::RecordVariable(GlobalVariable *GV, unsigned FrameIndex, SmallSet >::iterator IP = InlinedParamMap.find(V); - if (IP != InlinedParamMap.end()) { - SmallSet &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.