(
isa: &dyn TargetIsa,
compilation: &mut Compilation<'_>,
)
| 166 | } |
| 167 | |
| 168 | pub fn emit_dwarf( |
| 169 | isa: &dyn TargetIsa, |
| 170 | compilation: &mut Compilation<'_>, |
| 171 | ) -> EnvResult<Vec<DwarfSection>> { |
| 172 | let dwarf = transform_dwarf(isa, compilation)?; |
| 173 | let frame_table = create_frame_table(isa, compilation); |
| 174 | let sections = emit_dwarf_sections(isa, dwarf, frame_table)?; |
| 175 | Ok(sections) |
| 176 | } |
no test coverage detected