Fix copy-paste bug.

llvm-svn: 50557
This commit is contained in:
Ted Kremenek 2008-05-01 23:38:35 +00:00
parent 2722f36465
commit 63d76df236
1 changed files with 1 additions and 1 deletions

View File

@ -986,7 +986,7 @@ void CFRefCount::EvalObjCMessageExpr(ExplodedNodeSet<ValueState>& Dst,
RVal X = StateMgr.GetRVal(St, lv);
if (isa<lval::SymbolVal>(X)) {
SymbolID Sym = cast<lval::SymbolVal>(V).getSymbol();
SymbolID Sym = cast<lval::SymbolVal>(X).getSymbol();
B = Remove(B, Sym);
// Create a new state with the updated bindings.