fix merge conflict

This commit is contained in:
Folkert 2022-07-06 22:35:14 +02:00
parent b28561d1c9
commit 6e664b466f
No known key found for this signature in database
GPG Key ID: 1F17F6FFD112B97C

View File

@ -276,9 +276,9 @@ pub fn helper<'a>(
let res_lib = if config.add_debug_info {
let module = annotate_with_debug_info(module, context);
module_to_dylib(&module, &target, config.opt_level)
llvm_module_to_dylib(&module, &target, config.opt_level)
} else {
module_to_dylib(module, &target, config.opt_level)
llvm_module_to_dylib(module, &target, config.opt_level)
};
let lib = res_lib.expect("Error loading compiled dylib for test");