restore ability to ignore common preds for merges

Check for common preds was broken during refactoring in b9c5d65:
    Rework literal overlap checks for merging engines
This commit is contained in:
Alex Coyte 2016-05-02 13:03:17 +10:00 committed by Matthew Barr
parent 1a373d0619
commit 11896dcf42

View File

@ -1125,7 +1125,7 @@ bool checkPredDelays(const RoseBuildImpl &tbi, const deque<RoseVertex> &v1,
}
for (auto u : preds) {
if (!contains(known_good_preds, &u)) {
if (!contains(known_good_preds, u)) {
insert(&pred_lits, tbi.g[u].literals);
}
}