Skip to content

Commit

Permalink
rustc_codegen_ssa: Fix line accidentally reverted during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashenas88 committed Dec 6, 2019
1 parent 9a21f6e commit a5e144b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_codegen_ssa/mir/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub fn codegen_mir<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>>(
}).collect();

let (landing_pads, funclets) = create_funclets(&mir, &mut bx, &cleanup_kinds, &block_bxs);
let mir_body: &mir::Body<'_> = mir.body();
let mir_body: &mir::Body<'_> = *mir;
let mut fx = FunctionCx {
instance,
mir,
Expand Down

0 comments on commit a5e144b

Please sign in to comment.