Searched refs:properlyPostDominates (Results 1 – 2 of 2) sorted by relevance
181 bool properlyPostDominates(Operation *a, Operation *b);185 return a == b || properlyPostDominates(a, b); in postDominates()189 bool properlyPostDominates(Block *a, Block *b) { in properlyPostDominates() function195 return a == b || properlyPostDominates(a, b); in postDominates()
313 bool PostDominanceInfo::properlyPostDominates(Operation *a, Operation *b) { in properlyPostDominates() function in PostDominanceInfo