It's unnecessary to check for unknown at this point.

llvm-svn: 89437
This commit is contained in:
Zhongxing Xu 2009-11-20 01:56:48 +00:00
parent f7535121a2
commit 6d9a942174
1 changed files with 1 additions and 2 deletions

View File

@ -1278,8 +1278,7 @@ void GRExprEngine::EvalLocation(ExplodedNodeSet &Dst, Stmt *S,
ExplodedNode* Pred,
const GRState* state, SVal location,
const void *tag, bool isLoad) {
if (location.isUnknown() || Checkers.empty()) {
if (Checkers.empty()) {
Dst.Add(Pred);
return;
}