Actually use reduced set of checkers in EvalAssume.

llvm-svn: 110904
This commit is contained in:
Jordy Rose 2010-08-12 04:05:07 +00:00
parent e9e91b0597
commit 2f7ee3ca40
1 changed files with 1 additions and 2 deletions

View File

@ -527,8 +527,7 @@ const GRState *GRExprEngine::ProcessAssume(const GRState *state, SVal cond,
if (!CO->empty()) {
// Let the checkers have a crack at the assume before the transfer functions
// get their turn.
for (CheckersOrdered::iterator I = Checkers.begin(), E = Checkers.end();
I != E; ++I) {
for (CheckersOrdered::iterator I = CO->begin(), E = CO->end(); I!=E; ++I) {
// If any checker declares the state infeasible (or if it starts that
// way), bail out.