Fix unknown dwim-print command.

This commit is contained in:
Markus Reiter 2024-03-15 21:08:06 +01:00
parent 3ee1219088
commit e4b27a2a5b
No known key found for this signature in database
GPG Key ID: 245293B51702655B

View File

@ -50,13 +50,13 @@
// lldbg-check:[...] { a = 987 b = { x = 876 y = 765 z = 654 w = 543 } c = { x = 432 y = 321 z = 210 w = 109 } d = -98 }
// lldbr-check:(packed_struct::UnpackedInPacked) unpackedInPacked = { a = 987 b = { x = 876 y = 765 z = 654 w = 543 } c = { x = 432 y = 321 z = 210 w = 109 } d = -98 }
// lldb-command:dwim-print sizeof(packed)
// lldb-command:expr sizeof(packed)
// lldbg-check:[...] 14
// lldbr-check:(usize) = 14
// lldbr-check:(usize) [...] 14
// lldb-command:dwim-print sizeof(packedInPacked)
// lldb-command:expr sizeof(packedInPacked)
// lldbg-check:[...] 40
// lldbr-check:(usize) = 40
// lldbr-check:(usize) [...] 40
#![allow(unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]