We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 37c29b8 + 72d31e9 commit 377e810Copy full SHA for 377e810
src/back/lto.rs
@@ -272,7 +272,6 @@ fn fat_lto(
272
}*/
273
}
274
};
275
- let mut serialized_bitcode = Vec::new();
276
{
277
info!("using {:?} as a base module", module.name);
278
@@ -317,7 +316,6 @@ fn fat_lto(
317
316
unimplemented!("from uncompressed file")
318
319
320
- serialized_bitcode.push(bc_decoded);
321
322
save_temp_bitcode(cgcx, &module, "lto.input");
323
@@ -337,7 +335,7 @@ fn fat_lto(
337
335
// of now.
338
336
module.module_llvm.temp_dir = Some(tmp_path);
339
340
- Ok(LtoModuleCodegen::Fat { module, _serialized_bitcode: serialized_bitcode })
+ Ok(LtoModuleCodegen::Fat(module))
341
342
343
pub struct ModuleBuffer(PathBuf);
0 commit comments