diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-12 23:26:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-12 23:26:41 +0100 |
| commit | bd79fe7a94b8191ef580db7789fc55291eb825f1 (patch) | |
| tree | ad8fd165e93db6d67b120e58c898ee8fbb21a063 /compiler/rustc_codegen_ssa/src | |
| parent | f7273e0044ad8f35ad27282e4ab776af50b61a54 (diff) | |
| parent | c2102259a04dd9ede1e7faf01daa0dfcb948c214 (diff) | |
| download | rust-bd79fe7a94b8191ef580db7789fc55291eb825f1.tar.gz rust-bd79fe7a94b8191ef580db7789fc55291eb825f1.zip | |
Rollup merge of #132702 - 1c3t3a:issue-132615, r=rcvalle
CFI: Append debug location to CFI blocks Currently we're not appending debug locations to the inserted CFI blocks. This shows up in #132615 and #100783. This change fixes that by passing down the debug location to the CFI type-test generation and appending it to the blocks. Credits also belong to `@jakos-sec` who worked with me on this.
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/traits/debuginfo.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/traits/debuginfo.rs b/compiler/rustc_codegen_ssa/src/traits/debuginfo.rs index 670433a6c33..fe135e911fb 100644 --- a/compiler/rustc_codegen_ssa/src/traits/debuginfo.rs +++ b/compiler/rustc_codegen_ssa/src/traits/debuginfo.rs @@ -81,6 +81,7 @@ pub trait DebugInfoBuilderMethods: BackendTypes { ); fn set_dbg_loc(&mut self, dbg_loc: Self::DILocation); fn clear_dbg_loc(&mut self); + fn get_dbg_loc(&self) -> Option<Self::DILocation>; fn insert_reference_to_gdb_debug_scripts_section_global(&mut self); fn set_var_name(&mut self, value: Self::Value, name: &str); } |
