clear successors of this block.
(&mut self)
| 108 | |
| 109 | /// clear successors of this block. |
| 110 | pub fn clear_succ(&mut self) { |
| 111 | self.succ.clear(); |
| 112 | } |
| 113 | |
| 114 | /// get the single successor of this block. |
| 115 | pub fn get_signle_succ(&self) -> RcBasicBlock { |
no test coverage detected