|
53 | 53 |
|
54 | 54 | // lldb-command:run |
55 | 55 | // lldb-command:print *bool_ref |
56 | | -// lldbg-check:[...]$0 = true |
| 56 | +// lldbg-check:[...] true |
57 | 57 | // lldbr-check:(bool) *bool_ref = true |
58 | 58 |
|
59 | 59 | // lldb-command:print *int_ref |
60 | | -// lldbg-check:[...]$1 = -1 |
| 60 | +// lldbg-check:[...] -1 |
61 | 61 | // lldbr-check:(isize) *int_ref = -1 |
62 | 62 |
|
63 | 63 | // NOTE: only rust-enabled lldb supports 32bit chars |
64 | 64 | // lldbr-command:print *char_ref |
65 | 65 | // lldbr-check:(char) *char_ref = 'a' |
66 | 66 |
|
67 | 67 | // lldb-command:print *i8_ref |
68 | | -// lldbg-check:[...]$2 = 'D' |
| 68 | +// lldbg-check:[...] 'D' |
69 | 69 | // lldbr-check:(i8) *i8_ref = 68 |
70 | 70 |
|
71 | 71 | // lldb-command:print *i16_ref |
72 | | -// lldbg-check:[...]$3 = -16 |
| 72 | +// lldbg-check:[...] -16 |
73 | 73 | // lldbr-check:(i16) *i16_ref = -16 |
74 | 74 |
|
75 | 75 | // lldb-command:print *i32_ref |
76 | | -// lldbg-check:[...]$4 = -32 |
| 76 | +// lldbg-check:[...] -32 |
77 | 77 | // lldbr-check:(i32) *i32_ref = -32 |
78 | 78 |
|
79 | 79 | // lldb-command:print *i64_ref |
80 | | -// lldbg-check:[...]$5 = -64 |
| 80 | +// lldbg-check:[...] -64 |
81 | 81 | // lldbr-check:(i64) *i64_ref = -64 |
82 | 82 |
|
83 | 83 | // lldb-command:print *uint_ref |
84 | | -// lldbg-check:[...]$6 = 1 |
| 84 | +// lldbg-check:[...] 1 |
85 | 85 | // lldbr-check:(usize) *uint_ref = 1 |
86 | 86 |
|
87 | 87 | // lldb-command:print *u8_ref |
88 | | -// lldbg-check:[...]$7 = 'd' |
| 88 | +// lldbg-check:[...] 'd' |
89 | 89 | // lldbr-check:(u8) *u8_ref = 100 |
90 | 90 |
|
91 | 91 | // lldb-command:print *u16_ref |
92 | | -// lldbg-check:[...]$8 = 16 |
| 92 | +// lldbg-check:[...] 16 |
93 | 93 | // lldbr-check:(u16) *u16_ref = 16 |
94 | 94 |
|
95 | 95 | // lldb-command:print *u32_ref |
96 | | -// lldbg-check:[...]$9 = 32 |
| 96 | +// lldbg-check:[...] 32 |
97 | 97 | // lldbr-check:(u32) *u32_ref = 32 |
98 | 98 |
|
99 | 99 | // lldb-command:print *u64_ref |
100 | | -// lldbg-check:[...]$10 = 64 |
| 100 | +// lldbg-check:[...] 64 |
101 | 101 | // lldbr-check:(u64) *u64_ref = 64 |
102 | 102 |
|
103 | 103 | // lldb-command:print *f32_ref |
104 | | -// lldbg-check:[...]$11 = 2.5 |
| 104 | +// lldbg-check:[...] 2.5 |
105 | 105 | // lldbr-check:(f32) *f32_ref = 2.5 |
106 | 106 |
|
107 | 107 | // lldb-command:print *f64_ref |
108 | | -// lldbg-check:[...]$12 = 3.5 |
| 108 | +// lldbg-check:[...] 3.5 |
109 | 109 | // lldbr-check:(f64) *f64_ref = 3.5 |
110 | 110 |
|
111 | 111 | #![allow(unused_variables)] |
|
0 commit comments