about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorgodzie44 <godzie@yandex.ru>2025-07-24 16:30:22 +0300
committergodzie44 <godzie@yandex.ru>2025-07-27 14:42:07 +0300
commit49eda8edd5c99e4c65c687fff0b8e194eb339a23 (patch)
tree1c6b5c9914b1df08e8804dc756559699e50bb1f6 /compiler/rustc_codegen_llvm/src
parent86ef32029427cfc4161a3fd7a51992302f7c5552 (diff)
downloadrust-49eda8edd5c99e4c65c687fff0b8e194eb339a23.tar.gz
rust-49eda8edd5c99e4c65c687fff0b8e194eb339a23.zip
fix(debuginfo): disable overflow check for
recursive non-enum types
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/metadata/type_map.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/metadata/type_map.rs b/compiler/rustc_codegen_llvm/src/debuginfo/metadata/type_map.rs
index 56fb12d3c22..d1502d2b1e6 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/metadata/type_map.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/metadata/type_map.rs
@@ -285,8 +285,8 @@ pub(super) fn build_type_with_children<'ll, 'tcx>(
         //     Item(T),
         // }
         // ```
-        let is_expanding_recursive =
-            debug_context(cx).adt_stack.borrow().iter().any(|(parent_def_id, parent_args)| {
+        let is_expanding_recursive = adt_def.is_enum()
+            && debug_context(cx).adt_stack.borrow().iter().any(|(parent_def_id, parent_args)| {
                 if def_id == *parent_def_id {
                     args.iter().zip(parent_args.iter()).any(|(arg, parent_arg)| {
                         if let (Some(arg), Some(parent_arg)) = (arg.as_type(), parent_arg.as_type())