| 84 | } |
| 85 | |
| 86 | bool BasicBlock::structurally_dominates(const BasicBlock& other) const { |
| 87 | return (this == &other) || !(other.structural_dom_end() == |
| 88 | std::find(other.structural_dom_begin(), |
| 89 | other.structural_dom_end(), this)); |
| 90 | } |
| 91 | |
| 92 | bool BasicBlock::structurally_postdominates(const BasicBlock& other) const { |
| 93 | return (this == &other) || !(other.structural_pdom_end() == |
no test coverage detected