diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-01-24 18:56:42 +0100 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-01-24 18:56:42 +0100 |
| commit | b67610f98a53aec3bbd772a5e9efd058bacc2891 (patch) | |
| tree | 07adfdff9b0c52bd51d5c3cb5073e4952b46eb78 /src/debuginfo | |
| parent | 739938d7a8981e0b2852d5560b7da51eab66b452 (diff) | |
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
Diffstat (limited to 'src/debuginfo')
| -rw-r--r-- | src/debuginfo/mod.rs | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/src/debuginfo/mod.rs b/src/debuginfo/mod.rs index 28fbcb15b2b..3a7421d8b30 100644 --- a/src/debuginfo/mod.rs +++ b/src/debuginfo/mod.rs @@ -20,6 +20,14 @@ use indexmap::IndexSet; pub(crate) use emit::{DebugReloc, DebugRelocName}; pub(crate) use unwind::UnwindContext; +pub(crate) fn producer() -> String { + format!( + "cg_clif (rustc {}, cranelift {})", + rustc_interface::util::rustc_version_str().unwrap_or("unknown version"), + cranelift_codegen::VERSION, + ) +} + pub(crate) struct DebugContext { endian: RunTimeEndian, @@ -57,11 +65,7 @@ impl DebugContext { let mut dwarf = DwarfUnit::new(encoding); - let producer = format!( - "cg_clif (rustc {}, cranelift {})", - rustc_interface::util::rustc_version_str().unwrap_or("unknown version"), - cranelift_codegen::VERSION, - ); + let producer = producer(); let comp_dir = tcx .sess .opts |
