=?utf-8?q?Donát?= Nagy <donat.n...@ericsson.com> Message-ID: In-Reply-To: <llvm.org/llvm/llvm-project/pull/109...@github.com>
================ @@ -3776,6 +3829,11 @@ void ExprEngine::evalEagerlyAssumeBinOpBifurcation(ExplodedNodeSet &Dst, ProgramStateRef StateTrue, StateFalse; std::tie(StateTrue, StateFalse) = state->assume(*SEV); + if (StateTrue && StateFalse) { + StateTrue = StateTrue->set<LastEagerlyAssumeAssumptionAt>(Ex); + StateFalse = StateFalse->set<LastEagerlyAssumeAssumptionAt>(Ex); + } ---------------- isuckatcs wrote: Why are these set here? Wouldn't it be more convenient to set this at the point where `assumeCondition()` happens? I'm afraid this is going to pollute a lot of states even where this information doesn't tell us anything. https://github.com/llvm/llvm-project/pull/109804 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits