]> granicus.if.org Git - clang/commitdiff
Fix the -Wunused-variable warning.
authorHaojian Wu <hokein@google.com>
Wed, 14 Aug 2019 08:20:42 +0000 (08:20 +0000)
committerHaojian Wu <hokein@google.com>
Wed, 14 Aug 2019 08:20:42 +0000 (08:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@368808 91177308-0d34-0410-b5e6-96231b3b80d8

lib/StaticAnalyzer/Core/BugReporter.cpp
lib/StaticAnalyzer/Core/BugReporterVisitors.cpp

index f2983b7f4b63dd7f184687095dca2ac717fdaf79..faf9481da3b37715c2a461083cdcffc4035704d1 100644 (file)
@@ -2180,7 +2180,7 @@ llvm::iterator_range<BugReport::ranges_iterator> BugReport::getRanges() const {
   // If no custom ranges, add the range of the statement corresponding to
   // the error node.
   if (Ranges.empty()) {
-    if (const auto *E = dyn_cast_or_null<Expr>(getStmt()))
+    if (dyn_cast_or_null<Expr>(getStmt()))
       return llvm::make_range(&ErrorNodeRange, &ErrorNodeRange + 1);
     return llvm::make_range(ranges_iterator(), ranges_iterator());
   }
index 21e488ff853381db75c4d9d34bfceae328c599ed..f0c8de26bc171c74e5d9543b6e02a6f2bac22ed9 100644 (file)
@@ -1987,7 +1987,7 @@ bool bugreporter::trackExpressionValue(const ExplodedNode *InputNode,
     if (const auto *SR = L->getRegionAs<SymbolicRegion>()) {
       if (SR->getSymbol()->getType()->getPointeeType()->isVoidType())
         CanDereference = false;
-    } else if (const auto *AR = L->getRegionAs<AllocaRegion>())
+    } else if (L->getRegionAs<AllocaRegion>())
       CanDereference = false;
 
     // At this point we are dealing with the region's LValue.