(&self)
| 229 | /// start, and all basic-block edges. |
| 230 | #[deprecated = "use CompiledCode::get_code_bb_layout"] |
| 231 | pub fn get_code_bb_layout(&self) -> Option<(Vec<usize>, Vec<(usize, usize)>)> { |
| 232 | self.compiled_code().map(CompiledCode::get_code_bb_layout) |
| 233 | } |
| 234 | |
| 235 | /// Creates unwind information for the function. |
| 236 | /// |
nothing calls this directly
no test coverage detected