about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorWesley Wiser <wwiser@gmail.com>2025-08-28 21:55:20 -0500
committerWesley Wiser <wwiser@gmail.com>2025-08-28 21:55:20 -0500
commit161e29dc8486e69f8e02c1587a1abf141a413987 (patch)
treeb0d0806e9d5f6f0994ff958946c310e328f17536 /compiler/rustc_codegen_llvm/src
parent085bdc2aee2772c4f392a8afcd5421a8e8b6e9e4 (diff)
downloadrust-161e29dc8486e69f8e02c1587a1abf141a413987.tar.gz
rust-161e29dc8486e69f8e02c1587a1abf141a413987.zip
Revert "fix(debuginfo): disable overflow check for"
This reverts commit 49eda8edd5c99e4c65c687fff0b8e194eb339a23.
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 d1502d2b1e6..56fb12d3c22 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 = adt_def.is_enum()
-            && debug_context(cx).adt_stack.borrow().iter().any(|(parent_def_id, parent_args)| {
+        let is_expanding_recursive =
+            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())