Returns `true` if the given instruction reference is valid.
(&self, inst: Inst)
| 223 | |
| 224 | /// Returns `true` if the given instruction reference is valid. |
| 225 | pub fn inst_is_valid(&self, inst: Inst) -> bool { |
| 226 | self.insts.0.is_valid(inst) |
| 227 | } |
| 228 | |
| 229 | /// Get the total number of basic blocks created in this function, whether they are |
| 230 | /// currently inserted in the layout or not. |
no test coverage detected