Remove obsolete 'struct NullDerefTag'.

llvm-svn: 86957
This commit is contained in:
Ted Kremenek 2009-11-12 06:16:18 +00:00
parent f401fa0386
commit 386a2a52d3
2 changed files with 0 additions and 12 deletions

View 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 {

View 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;