A bottom domain means the basic block is unreachable
(&self)
| 49 | { |
| 50 | // A bottom domain means the basic block is unreachable |
| 51 | pub fn is_bottom(&self) -> bool { |
| 52 | self.numerical_domain.is_bottom() |
| 53 | } |
| 54 | |
| 55 | pub fn is_top(&self) -> bool { |
| 56 | self.numerical_domain.is_top() && self.nullness_domain.is_empty() |