[NFC] Remove a FIXME fixed by an earlier patch.

Commit 28bd7945ea incidentally fixed the
associated FIXME, but didn't delete it.

Differential Revision: https://reviews.llvm.org/D133588
This commit is contained in:
Yitzhak Mandelbaum 2022-09-09 17:04:24 +00:00
parent 8aa800614b
commit abc16c7a5b
1 changed files with 0 additions and 3 deletions

View File

@ -81,9 +81,6 @@ static Value *mergeDistinctValues(QualType Type, Value *Val1,
Environment::ValueModel &Model) {
// Join distinct boolean values preserving information about the constraints
// in the respective path conditions.
//
// FIXME: Does not work for backedges, since the two (or more) paths will not
// have mutually exclusive conditions.
if (auto *Expr1 = dyn_cast<BoolValue>(Val1)) {
auto *Expr2 = cast<BoolValue>(Val2);
auto &MergedVal = MergedEnv.makeAtomicBoolValue();