diff options
| author | godzie44 <godzie@yandex.ru> | 2025-07-24 16:30:22 +0300 |
|---|---|---|
| committer | godzie44 <godzie@yandex.ru> | 2025-07-27 14:42:07 +0300 |
| commit | 49eda8edd5c99e4c65c687fff0b8e194eb339a23 (patch) | |
| tree | 1c6b5c9914b1df08e8804dc756559699e50bb1f6 /tests/codegen-llvm/debuginfo-cyclic-structure.rs | |
| parent | 86ef32029427cfc4161a3fd7a51992302f7c5552 (diff) | |
| download | rust-49eda8edd5c99e4c65c687fff0b8e194eb339a23.tar.gz rust-49eda8edd5c99e4c65c687fff0b8e194eb339a23.zip | |
fix(debuginfo): disable overflow check for
recursive non-enum types
Diffstat (limited to 'tests/codegen-llvm/debuginfo-cyclic-structure.rs')
| -rw-r--r-- | tests/codegen-llvm/debuginfo-cyclic-structure.rs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/codegen-llvm/debuginfo-cyclic-structure.rs b/tests/codegen-llvm/debuginfo-cyclic-structure.rs new file mode 100644 index 00000000000..b8cc5447741 --- /dev/null +++ b/tests/codegen-llvm/debuginfo-cyclic-structure.rs @@ -0,0 +1,32 @@ +//@ compile-flags:-g -Copt-level=0 -C panic=abort + +// Check that debug information exists for structures containing loops (cyclic references). +// Previously it may incorrectly prune member information during recursive type inference check. + +// CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Arc<debuginfo_cyclic_structure::Inner<alloc::sync::Arc<debuginfo_cyclic_structure::Handle{{.*}}elements: ![[FIELDS:[0-9]+]] +// CHECK: ![[FIELDS]] = !{!{{.*}}} +// CHECK-NOT: ![[FIELDS]] = !{} + +#![crate_type = "lib"] + +use std::mem::MaybeUninit; +use std::sync::Arc; + +struct Inner<T> { + buffer: Box<MaybeUninit<T>>, +} +struct Shared { + shared: Arc<Inner<Arc<Handle>>>, +} +struct Handle { + shared: Shared, +} +struct Core { + inner: Arc<Inner<Arc<Handle>>>, +} + +#[no_mangle] +extern "C" fn test() { + let с = Core { inner: Arc::new(Inner { buffer: Box::new(MaybeUninit::uninit()) }) }; + std::hint::black_box(с); +} |
