cranelift-codegen 0.71.0

Low-level code generator library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;
use crate::isa::unwind::input::UnwindInfo;
use crate::result::CodegenResult;

pub struct Arm32UnwindInfo;

impl UnwindInfoGenerator<Inst> for Arm32UnwindInfo {
    fn create_unwind_info(
        _context: UnwindInfoContext<Inst>,
    ) -> CodegenResult<Option<UnwindInfo<Reg>>> {
        // TODO
        Ok(None)
    }
}