(
&self,
isa: &dyn TargetIsa,
)
| 238 | #[cfg(feature = "unwind")] |
| 239 | #[deprecated = "use CompiledCode::create_unwind_info"] |
| 240 | pub fn create_unwind_info( |
| 241 | &self, |
| 242 | isa: &dyn TargetIsa, |
| 243 | ) -> CodegenResult<Option<crate::isa::unwind::UnwindInfo>> { |
| 244 | self.compiled_code().unwrap().create_unwind_info(isa) |
| 245 | } |
| 246 | |
| 247 | /// Run the verifier on the function. |
| 248 | /// |