about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/debuginfo
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-03-23 05:13:01 +0000
committerbors <bors@rust-lang.org>2024-03-23 05:13:01 +0000
commitf0d864fe04c488fdfe41da0e840ec4747f5a6f80 (patch)
tree08ad4e730aec7d778828c9f1e413cd42ccf2068d /compiler/rustc_codegen_ssa/src/debuginfo
parent2fae357cb87d6ec184a34892394d4e737ecd6030 (diff)
parent5039f8b1e98720893bc2e32912e8d0535587c9e9 (diff)
downloadrust-f0d864fe04c488fdfe41da0e840ec4747f5a6f80.tar.gz
rust-f0d864fe04c488fdfe41da0e840ec4747f5a6f80.zip
Auto merge of #3395 - rust-lang:rustup-2024-03-23, r=saethlin
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
index fcd7fa9247b..64448441acb 100644
--- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
+++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
@@ -138,7 +138,7 @@ fn push_debuginfo_type_name<'tcx>(
                 output.push(')');
             }
         }
-        ty::RawPtr(ty::TypeAndMut { ty: inner_type, mutbl }) => {
+        ty::RawPtr(inner_type, mutbl) => {
             if cpp_like_debuginfo {
                 match mutbl {
                     Mutability::Not => output.push_str("ptr_const$<"),