diff options
| author | bors <bors@rust-lang.org> | 2024-11-13 01:00:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-13 01:00:17 +0000 |
| commit | 242f20dc1e95ca8def0ff436d7c844811ae7ac25 (patch) | |
| tree | a9fa164ffed7bd2076109efa63e9d21c12ea706e /compiler/rustc_codegen_ssa/src | |
| parent | b420d923cff05f51eb43f607f5d8dce827eeba97 (diff) | |
| parent | d83de7e0c59efeea72088e732f554639276d6f4b (diff) | |
| download | rust-242f20dc1e95ca8def0ff436d7c844811ae7ac25.tar.gz rust-242f20dc1e95ca8def0ff436d7c844811ae7ac25.zip | |
Auto merge of #132972 - matthiaskrgr:rollup-456osr7, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #132702 (CFI: Append debug location to CFI blocks) - #132851 (Update the doc comment of `ASCII_CASE_MASK`) - #132948 (stabilize const_unicode_case_lookup) - #132950 (Use GNU ld on m68k-unknown-linux-gnu) - #132962 (triagebot: add codegen reviewers) - #132966 (stabilize const_option_ext) - #132970 (Add tracking issue number to unsigned_nonzero_div_ceil feature) r? `@ghost` `@rustbot` modify labels: rollup
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); } |
