Remove dead method ProgramState::MarshalState().

llvm-svn: 163479
This commit is contained in:
Ted Kremenek 2012-09-09 14:55:59 +00:00
parent 851c941b8b
commit e9764d8f91
2 changed files with 0 additions and 15 deletions

View File

@ -493,10 +493,6 @@ public:
const StackFrameContext *LCtx,
SymbolReaper& SymReaper);
/// Marshal a new state for the callee in another translation unit.
/// 'state' is owned by the caller's engine.
ProgramStateRef MarshalState(ProgramStateRef state, const StackFrameContext *L);
public:
SVal ArrayToPointer(Loc Array) {

View File

@ -111,17 +111,6 @@ ProgramStateManager::removeDeadBindings(ProgramStateRef state,
return ConstraintMgr->removeDeadBindings(Result, SymReaper);
}
ProgramStateRef ProgramStateManager::MarshalState(ProgramStateRef state,
const StackFrameContext *InitLoc) {
// make up an empty state for now.
ProgramState State(this,
EnvMgr.getInitialEnvironment(),
StoreMgr->getInitialStore(InitLoc),
GDMFactory.getEmptyMap());
return getPersistentState(State);
}
ProgramStateRef ProgramState::bindCompoundLiteral(const CompoundLiteralExpr *CL,
const LocationContext *LC,
SVal V) const {