Remove some dead spacing. No functionality change.

llvm-svn: 66437
This commit is contained in:
Ted Kremenek 2009-03-09 20:26:47 +00:00
parent 0ee0da841d
commit 701e487520
1 changed files with 0 additions and 2 deletions

View File

@ -1037,12 +1037,10 @@ GRExprEngine::NodeTy* GRExprEngine::EvalLocation(Stmt* Ex, NodeTy* Pred,
Loc LV = cast<Loc>(location);
// "Assume" that the pointer is not NULL.
bool isFeasibleNotNull = false;
const GRState* StNotNull = Assume(state, LV, true, isFeasibleNotNull);
// "Assume" that the pointer is NULL.
bool isFeasibleNull = false;
GRStateRef StNull = GRStateRef(Assume(state, LV, false, isFeasibleNull),
getStateManager());