Skip to content

Commit

Permalink
Apply rustfmt changes that the CI brought up.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlewycky committed Jan 22, 2021
1 parent 8ee2cf5 commit fffdde0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/compiler-llvm/src/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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, "");
Expand Down

0 comments on commit fffdde0

Please sign in to comment.