|
19 | 19 |
|
20 | 20 | // gdb-command:print tuple_interior_padding
|
21 | 21 | // gdbg-check:$1 = {__0 = 0, __1 = OneHundred}
|
22 |
| -// gdbr-check:$1 = (0, c_style_enum_in_composite::AnEnum::OneHundred) |
| 22 | +// gdbr-check:$1 = {0, c_style_enum_in_composite::AnEnum::OneHundred} |
23 | 23 |
|
24 | 24 | // gdb-command:print tuple_padding_at_end
|
25 | 25 | // gdbg-check:$2 = {__0 = {__0 = 1, __1 = OneThousand}, __1 = 2}
|
26 |
| -// gdbr-check:$2 = ((1, c_style_enum_in_composite::AnEnum::OneThousand), 2) |
| 26 | +// gdbr-check:$2 = {{1, c_style_enum_in_composite::AnEnum::OneThousand}, 2} |
27 | 27 |
|
28 | 28 | // gdb-command:print tuple_different_enums
|
29 | 29 | // gdbg-check:$3 = {__0 = OneThousand, __1 = MountainView, __2 = OneMillion, __3 = Vienna}
|
30 |
| -// gdbr-check:$3 = (c_style_enum_in_composite::AnEnum::OneThousand, c_style_enum_in_composite::AnotherEnum::MountainView, c_style_enum_in_composite::AnEnum::OneMillion, c_style_enum_in_composite::AnotherEnum::Vienna) |
| 30 | +// gdbr-check:$3 = {c_style_enum_in_composite::AnEnum::OneThousand, c_style_enum_in_composite::AnotherEnum::MountainView, c_style_enum_in_composite::AnEnum::OneMillion, c_style_enum_in_composite::AnotherEnum::Vienna} |
31 | 31 |
|
32 | 32 | // gdb-command:print padded_struct
|
33 | 33 | // gdbg-check:$4 = {a = 3, b = OneMillion, c = 4, d = Toronto, e = 5}
|
34 |
| -// gdbr-check:$4 = c_style_enum_in_composite::PaddedStruct {a: 3, b: c_style_enum_in_composite::AnEnum::OneMillion, c: 4, d: c_style_enum_in_composite::AnotherEnum::Toronto, e: 5} |
| 34 | +// gdbr-check:$4 = PaddedStruct = {a = 3, b = c_style_enum_in_composite::AnEnum::OneMillion, c = 4, d = c_style_enum_in_composite::AnotherEnum::Toronto, e = 5} |
35 | 35 |
|
36 | 36 | // gdb-command:print packed_struct
|
37 | 37 | // gdbg-check:$5 = {a = 6, b = OneHundred, c = 7, d = Vienna, e = 8}
|
38 |
| -// gdbr-check:$5 = c_style_enum_in_composite::PackedStruct {a: 6, b: c_style_enum_in_composite::AnEnum::OneHundred, c: 7, d: c_style_enum_in_composite::AnotherEnum::Vienna, e: 8} |
| 38 | +// gdbr-check:$5 = PackedStruct = {a = 6, b = c_style_enum_in_composite::AnEnum::OneHundred, c = 7, d = c_style_enum_in_composite::AnotherEnum::Vienna, e = 8} |
39 | 39 |
|
40 | 40 | // gdb-command:print non_padded_struct
|
41 | 41 | // gdbg-check:$6 = {a = OneMillion, b = MountainView, c = OneThousand, d = Toronto}
|
42 |
| -// gdbr-check:$6 = c_style_enum_in_composite::NonPaddedStruct {a: c_style_enum_in_composite::AnEnum::OneMillion, b: c_style_enum_in_composite::AnotherEnum::MountainView, c: c_style_enum_in_composite::AnEnum::OneThousand, d: c_style_enum_in_composite::AnotherEnum::Toronto} |
| 42 | +// gdbr-check:$6 = NonPaddedStruct = {a = c_style_enum_in_composite::AnEnum::OneMillion, b = c_style_enum_in_composite::AnotherEnum::MountainView, c = c_style_enum_in_composite::AnEnum::OneThousand, d = c_style_enum_in_composite::AnotherEnum::Toronto} |
43 | 43 |
|
44 | 44 | // gdb-command:print struct_with_drop
|
45 | 45 | // gdbg-check:$7 = {__0 = {a = OneHundred, b = Vienna}, __1 = 9}
|
46 |
| -// gdbr-check:$7 = (c_style_enum_in_composite::StructWithDrop {a: c_style_enum_in_composite::AnEnum::OneHundred, b: c_style_enum_in_composite::AnotherEnum::Vienna}, 9) |
| 46 | +// gdbr-check:$7 = {StructWithDrop = {a = c_style_enum_in_composite::AnEnum::OneHundred, b = c_style_enum_in_composite::AnotherEnum::Vienna}, 9} |
47 | 47 |
|
48 | 48 | // === LLDB TESTS ==================================================================================
|
49 | 49 |
|
|
0 commit comments