forked from OSchip/llvm-project
It's unnecessary to check for unknown at this point.
llvm-svn: 89437
This commit is contained in:
parent
f7535121a2
commit
6d9a942174
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue