Update Cargo.lock

This commit is contained in:
bjorn3
2018-09-22 13:55:23 +02:00
parent f127042639
commit a83e7766b7
2 changed files with 22 additions and 22 deletions

View File

@@ -215,7 +215,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
.declare_function("main", Linkage::Import, &sig)
.unwrap();
jit_module.finalize_all();
jit_module.finalize_definitions();
let finalized_main: *const u8 = jit_module.get_finalized_function(main_func_id);
println!("🎉 Finalized everything");
@@ -242,7 +242,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
tcx.sess.abort_if_errors();
if should_codegen(tcx.sess) {
faerie_module.finalize_all();
faerie_module.finalize_definitions();
}
return Box::new(OngoingCodegen {