Skip to content

Commit 13d0ef3

Browse files
Remove unwanted semi-colon in rustc_codegen_gcc
1 parent f8491b1 commit 13d0ef3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_codegen_gcc/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
16101610

16111611
fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {
16121612
// TODO(antoyo): generate the correct landing pad
1613-
self.cleanup_landing_pad(pers_fn);
1613+
self.cleanup_landing_pad(pers_fn)
16141614
}
16151615

16161616
#[cfg(feature = "master")]

0 commit comments

Comments
 (0)