C++: Sync identical files.

This commit is contained in:
Mathias Vorreiter Pedersen
2021-10-26 13:12:25 +01:00
parent 7197216185
commit 12e0185b0d

View File

@@ -156,6 +156,7 @@ private predicate dominatesPredecessor(BasicBlock bb1, BasicBlock bb2) {
}
/** Holds if `df` is in the dominance frontier of `bb`. */
pragma[noinline]
private predicate inDominanceFrontier(BasicBlock bb, BasicBlock df) {
dominatesPredecessor(bb, df) and
not strictlyDominates(bb, df)