about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/debuginfo
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2024-04-16 05:22:30 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2024-04-16 05:22:30 +0000
commita1f523dd2c2f50c434d750f4957fc1825ea1753e (patch)
treed79a686c4d2bc3b3def6b1a8ccb2a19a4ddc463b /compiler/rustc_codegen_ssa/src/debuginfo
parent20f418252f2a207abca10a83ed2b04cb0b7aa57c (diff)
parent6288a721f5ea59a59b4304a7b70c92d7755e8aa8 (diff)
downloadrust-a1f523dd2c2f50c434d750f4957fc1825ea1753e.tar.gz
rust-a1f523dd2c2f50c434d750f4957fc1825ea1753e.zip
Merge from rustc
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
index 64448441acb..5f0dcf9510f 100644
--- a/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
+++ b/compiler/rustc_codegen_ssa/src/debuginfo/type_names.rs
@@ -202,6 +202,16 @@ fn push_debuginfo_type_name<'tcx>(
                 }
             }
         }
+        ty::Pat(inner_type, pat) => {
+            if cpp_like_debuginfo {
+                output.push_str("pat$<");
+                push_debuginfo_type_name(tcx, inner_type, true, output, visited);
+                // FIXME(wg-debugging): implement CPP like printing for patterns.
+                write!(output, ",{:?}>", pat).unwrap();
+            } else {
+                write!(output, "{:?}", t).unwrap();
+            }
+        }
         ty::Slice(inner_type) => {
             if cpp_like_debuginfo {
                 output.push_str("slice2$<");