Sfoglia il codice sorgente

Remove a redundant method. We have a const version.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128762 91177308-0d34-0410-b5e6-96231b3b80d8
Zhongxing Xu 14 anni fa
parent
commit
2bfa3019b8

+ 0 - 6
include/clang/StaticAnalyzer/Core/PathSensitive/GRState.h

@@ -273,8 +273,6 @@ public:
 
 
   SVal getSValAsScalarOrLoc(const MemRegion *R) const;
   SVal getSValAsScalarOrLoc(const MemRegion *R) const;
   
   
-  const llvm::APSInt *getSymVal(SymbolRef sym);
-
   bool scanReachableSymbols(SVal val, SymbolVisitor& visitor) const;
   bool scanReachableSymbols(SVal val, SymbolVisitor& visitor) const;
   
   
   bool scanReachableSymbols(const SVal *I, const SVal *E,
   bool scanReachableSymbols(const SVal *I, const SVal *E,
@@ -626,10 +624,6 @@ public:
 // Out-of-line method definitions for GRState.
 // Out-of-line method definitions for GRState.
 //===----------------------------------------------------------------------===//
 //===----------------------------------------------------------------------===//
 
 
-inline const llvm::APSInt *GRState::getSymVal(SymbolRef sym) {
-  return getStateManager().getSymVal(this, sym);
-}
-  
 inline const VarRegion* GRState::getRegion(const VarDecl *D,
 inline const VarRegion* GRState::getRegion(const VarDecl *D,
                                            const LocationContext *LC) const {
                                            const LocationContext *LC) const {
   return getStateManager().getRegionManager().getVarRegion(D, LC);
   return getStateManager().getRegionManager().getVarRegion(D, LC);

+ 1 - 0
lib/StaticAnalyzer/Checkers/MallocChecker.cpp

@@ -632,6 +632,7 @@ const GRState *MallocChecker::evalAssume(const GRState *state, SVal Cond,
   RegionStateTy RS = state->get<RegionState>();
   RegionStateTy RS = state->get<RegionState>();
 
 
   for (RegionStateTy::iterator I = RS.begin(), E = RS.end(); I != E; ++I) {
   for (RegionStateTy::iterator I = RS.begin(), E = RS.end(); I != E; ++I) {
+    // If the symbol is assumed to NULL, this will return an APSInt*.
     if (state->getSymVal(I.getKey()))
     if (state->getSymVal(I.getKey()))
       state = state->set<RegionState>(I.getKey(),RefState::getAllocateFailed());
       state = state->set<RegionState>(I.getKey(),RefState::getAllocateFailed());
   }
   }