Home
last modified time | relevance | path

Searched refs:properlyPostDominates (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/mlir/include/mlir/IR/
DDominance.h143 bool properlyPostDominates(Operation *a, Operation *b);
147 return a == b || properlyPostDominates(a, b); in postDominates()
151 bool properlyPostDominates(Block *a, Block *b) { in properlyPostDominates() function
157 return a == b || properlyPostDominates(a, b); in postDominates()
/external/llvm-project/mlir/lib/IR/
DDominance.cpp288 bool PostDominanceInfo::properlyPostDominates(Operation *a, Operation *b) { in properlyPostDominates() function in PostDominanceInfo