Struct cranelift_codegen::CompileError
source · pub struct CompileError<'a> {
pub inner: CodegenError,
pub func: &'a Function,
}
Expand description
Compilation error, with the accompanying function to help printing it.
Fields§
§inner: CodegenError
Underlying CodegenError
that triggered the error.
func: &'a Function
Function we tried to compile, for display purposes.