diff options
| author | bors <bors@rust-lang.org> | 2023-10-02 22:02:12 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-10-02 22:02:12 +0000 |
| commit | 2e5a9dd6c9eaa42f0684b4b760bd68fc27cbe51b (patch) | |
| tree | c35af3eaa158eb1f7efd505501b7fa79be9271ee /compiler/rustc_codegen_gcc/src | |
| parent | 5333b878c8bc1c4267a67ea3682663629e47541a (diff) | |
| parent | 5bcf4f26ac44284b0dbc9b53404fa5dd8a0db01a (diff) | |
| download | rust-2e5a9dd6c9eaa42f0684b4b760bd68fc27cbe51b.tar.gz rust-2e5a9dd6c9eaa42f0684b4b760bd68fc27cbe51b.zip | |
Auto merge of #102099 - InnovativeInventor:re-cold-land, r=nikic
Rebased: Mark drop calls in landing pads cold instead of noinline I noticed that certain inlining optimizations were missing while staring at some compiled code output. I'd like to see this relanded, so I rebased the PR from `@erikdesjardins` (PR #94823). This PR reapplies https://github.com/rust-lang/rust/pull/92419, which was reverted in https://github.com/rust-lang/rust/pull/94402 due to https://github.com/rust-lang/rust/issues/94390. Fixes https://github.com/rust-lang/rust/issues/46515, fixes https://github.com/rust-lang/rust/issues/87055. Update: fixes #97217.
Diffstat (limited to 'compiler/rustc_codegen_gcc/src')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/builder.rs | 2 |
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 308cb04cac3..ecc293aee23 100644 --- a/compiler/rustc_codegen_gcc/src/builder.rs +++ b/compiler/rustc_codegen_gcc/src/builder.rs @@ -1420,7 +1420,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> { self.cx } - fn do_not_inline(&mut self, _llret: RValue<'gcc>) { + fn apply_attrs_to_cleanup_callsite(&mut self, _llret: RValue<'gcc>) { // FIXME(bjorn3): implement } |
