Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDominance.h181 bool properlyPostDominates(Operation *a, Operation *b);
185 return a == b || properlyPostDominates(a, b); in postDominates()
189 bool properlyPostDominates(Block *a, Block *b) { in properlyPostDominates() function
195 return a == b || properlyPostDominates(a, b); in postDominates()
/llvm-project-15.0.7/mlir/lib/IR/
H A DDominance.cpp313 bool PostDominanceInfo::properlyPostDominates(Operation *a, Operation *b) { in properlyPostDominates() function in PostDominanceInfo