about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-06-28 23:50:00 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-06-28 23:50:00 +0200
commit13d0ef30c9acf216d3c666a868639d0d84f257a8 (patch)
tree94fe112e3997d09f343db46a5648dddd913b3c7d /compiler/rustc_codegen_gcc
parentf8491b11f344222446a9bcd0c72b7bbb0834cdc0 (diff)
downloadrust-13d0ef30c9acf216d3c666a868639d0d84f257a8.tar.gz
rust-13d0ef30c9acf216d3c666a868639d0d84f257a8.zip
Remove unwanted semi-colon in `rustc_codegen_gcc`
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs
index a4454cd9c73..805f68cd74c 100644
--- a/compiler/rustc_codegen_gcc/src/builder.rs
+++ b/compiler/rustc_codegen_gcc/src/builder.rs
@@ -1610,7 +1610,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
 
     fn filter_landing_pad(&mut self, pers_fn: Function<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {
         // TODO(antoyo): generate the correct landing pad
-        self.cleanup_landing_pad(pers_fn);
+        self.cleanup_landing_pad(pers_fn)
     }
 
     #[cfg(feature = "master")]