Apply rustfmt changes that the CI brought up.

This commit is contained in:
Nick Lewycky
2021-01-21 17:31:40 -08:00
parent 8ee2cf55ad
commit fffdde0217

View File

@ -157,7 +157,9 @@ impl LLVMCompiler {
.collect::<Result<Vec<_>, CompileError>>()?
.into_par_iter();
let merged_bitcode = merged_bitcode.chain(trampolines_bitcode).chain(dynamic_trampolines_bitcode)
let merged_bitcode = merged_bitcode
.chain(trampolines_bitcode)
.chain(dynamic_trampolines_bitcode)
.reduce_with(|bc1, bc2| {
let ctx = Context::create();
let membuf = MemoryBuffer::create_from_memory_range(&bc1, "");