]> granicus.if.org Git - clang/commitdiff
Remove obsolete 'struct NullDerefTag'.
authorTed Kremenek <kremenek@apple.com>
Thu, 12 Nov 2009 06:16:18 +0000 (06:16 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 12 Nov 2009 06:16:18 +0000 (06:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86957 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Analysis/PathSensitive/GRState.h
lib/Analysis/GRState.cpp

index 4e834b535a8808788b91febc4d3604bf98bf5fe4..976a7427bdc02a81672f861f469d38e493779109 100644 (file)
@@ -333,12 +333,6 @@ public:
   void printStdErr() const;
 
   void printDOT(llvm::raw_ostream& Out) const;
-
-  // Tags used for the Generic Data Map.
-  struct NullDerefTag {
-    static int TagInt;
-    typedef const SVal* data_type;
-  };
 };
 
 class GRStateSet {
index f269824d5477c40f7a1798947dd9363b060cf657..23ee0b2258bd77fc12b812d26b95ab5fc957b239 100644 (file)
@@ -332,9 +332,3 @@ bool GRStateManager::isEqual(const GRState* state, const Expr* Ex,
 bool GRStateManager::isEqual(const GRState* state, const Expr* Ex, uint64_t x) {
   return isEqual(state, Ex, getBasicVals().getValue(x, Ex->getType()));
 }
-
-//===----------------------------------------------------------------------===//
-// Persistent values for indexing into the Generic Data Map.
-
-int GRState::NullDerefTag::TagInt = 0;
-