about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorWesley Wiser <wesleywiser@microsoft.com>2022-06-15 18:35:41 -0400
committerWesley Wiser <wesleywiser@microsoft.com>2022-06-15 18:35:41 -0400
commit95adaa22e0e2cb6ce9cf0521232620ffdb7b5f00 (patch)
treef0ffd86c7158fb2a65b6f39bcb3ceafdce581398 /src
parent2b5efa4f79b2def8f1cfe335890867a07d2bed16 (diff)
downloadrust-95adaa22e0e2cb6ce9cf0521232620ffdb7b5f00.tar.gz
rust-95adaa22e0e2cb6ce9cf0521232620ffdb7b5f00.zip
The type of the slice length field is architecture dependent
Diffstat (limited to 'src')
-rw-r--r--src/test/debuginfo/rc_arc.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/debuginfo/rc_arc.rs b/src/test/debuginfo/rc_arc.rs
index 37e870d8a8e..c05c565d956 100644
--- a/src/test/debuginfo/rc_arc.rs
+++ b/src/test/debuginfo/rc_arc.rs
@@ -58,7 +58,7 @@
 
 // cdb-command:dx slice_rc,d
 // cdb-check:slice_rc,d       : { len=3 } [Type: alloc::rc::Rc<slice$<u32> >]
-// cdb-check:    [Length]         : 3 [Type: unsigned __int64]
+// cdb-check:    [Length]         : 3 [Type: [...]]
 // cdb-check:    [Reference count] : 41 [Type: core::cell::Cell<usize>]
 // cdb-check:    [Weak reference count] : 2 [Type: core::cell::Cell<usize>]
 // cdb-check:    [0]              : 1 [Type: u32]
@@ -67,7 +67,7 @@
 
 // cdb-command:dx slice_rc_weak,d
 // cdb-check:slice_rc_weak,d  : { len=3 } [Type: alloc::rc::Weak<slice$<u32> >]
-// cdb-check:    [Length]         : 3 [Type: unsigned __int64]
+// cdb-check:    [Length]         : 3 [Type: [...]]
 // cdb-check:    [Reference count] : 41 [Type: core::cell::Cell<usize>]
 // cdb-check:    [Weak reference count] : 2 [Type: core::cell::Cell<usize>]
 // cdb-check:    [0]              : 1 [Type: u32]
@@ -86,7 +86,7 @@
 
 // cdb-command:dx slice_arc,d
 // cdb-check:slice_arc,d      : { len=3 } [Type: alloc::sync::Arc<slice$<u32> >]
-// cdb-check:    [Length]         : 3 [Type: unsigned __int64]
+// cdb-check:    [Length]         : 3 [Type: [...]]
 // cdb-check:    [Reference count] : 61 [Type: core::sync::atomic::AtomicUsize]
 // cdb-check:    [Weak reference count] : 2 [Type: core::sync::atomic::AtomicUsize]
 // cdb-check:    [0]              : 4 [Type: u32]
@@ -95,7 +95,7 @@
 
 // cdb-command:dx slice_arc_weak,d
 // cdb-check:slice_arc_weak,d : { len=3 } [Type: alloc::sync::Weak<slice$<u32> >]
-// cdb-check:    [Length]         : 3 [Type: unsigned __int64]
+// cdb-check:    [Length]         : 3 [Type: [...]]
 // cdb-check:    [Reference count] : 61 [Type: core::sync::atomic::AtomicUsize]
 // cdb-check:    [Weak reference count] : 2 [Type: core::sync::atomic::AtomicUsize]
 // cdb-check:    [0]              : 4 [Type: u32]