Allow printing the version of the default codegen backend if it isn't llvm

This commit is contained in:
bjorn3 2021-05-29 15:14:05 +02:00
parent 20e9a1372b
commit b6f0b46e20

View file

@ -167,6 +167,10 @@ impl CodegenBackend for CraneliftCodegenBackend {
vec![]
}
fn print_version(&self) {
println!("Cranelift version: {}", cranelift_codegen::VERSION);
}
fn codegen_crate(
&self,
tcx: TyCtxt<'_>,