Searched refs:properlyPostDominates (Results 1 – 2 of 2) sorted by relevance
143 bool properlyPostDominates(Operation *a, Operation *b);147 return a == b || properlyPostDominates(a, b); in postDominates()151 bool properlyPostDominates(Block *a, Block *b) { in properlyPostDominates() function157 return a == b || properlyPostDominates(a, b); in postDominates()
288 bool PostDominanceInfo::properlyPostDominates(Operation *a, Operation *b) { in properlyPostDominates() function in PostDominanceInfo