diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2025-06-22 11:38:25 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2025-06-22 11:38:47 -0400 |
| commit | a46ef2d01ed9006097b0b71348d633bfb116acaa (patch) | |
| tree | 76f0915297cf03276a8eca8c1229b9983dc1035c /compiler/rustc_codegen_ssa/src | |
| parent | d4e1159b8c97478778b09a4cc1c7adce5653b8bf (diff) | |
| download | rust-a46ef2d01ed9006097b0b71348d633bfb116acaa.tar.gz rust-a46ef2d01ed9006097b0b71348d633bfb116acaa.zip | |
Remove dead instructions in terminate blocks
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/traits/builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/traits/builder.rs b/compiler/rustc_codegen_ssa/src/traits/builder.rs index f35f551d590..d19de6f5d26 100644 --- a/compiler/rustc_codegen_ssa/src/traits/builder.rs +++ b/compiler/rustc_codegen_ssa/src/traits/builder.rs @@ -516,7 +516,7 @@ pub trait BuilderMethods<'a, 'tcx>: // These are used by everyone except msvc fn cleanup_landing_pad(&mut self, pers_fn: Self::Function) -> (Self::Value, Self::Value); - fn filter_landing_pad(&mut self, pers_fn: Self::Function) -> (Self::Value, Self::Value); + fn filter_landing_pad(&mut self, pers_fn: Self::Function); fn resume(&mut self, exn0: Self::Value, exn1: Self::Value); // These are used only by msvc |
