|
54 | 54 |
|
55 | 55 | // lldb-command:run
|
56 | 56 | // lldb-command:v *bool_ref
|
57 |
| -// lldbr-check:(bool) *bool_ref = true |
| 57 | +// lldb-check:(bool) *bool_ref = true |
58 | 58 |
|
59 | 59 | // lldb-command:v *int_ref
|
60 |
| -// lldbr-check:(isize) *int_ref = -1 |
| 60 | +// lldb-check:(isize) *int_ref = -1 |
61 | 61 |
|
62 | 62 | // NOTE: only rust-enabled lldb supports 32bit chars
|
63 |
| -// lldbr-command:print *char_ref |
64 |
| -// lldbr-check:(char) *char_ref = 'a' |
| 63 | +// lldb-command:print *char_ref |
| 64 | +// lldb-check:(char) *char_ref = 'a' |
65 | 65 |
|
66 | 66 | // lldb-command:v *i8_ref
|
67 |
| -// lldbr-check:(i8) *i8_ref = 68 |
| 67 | +// lldb-check:(i8) *i8_ref = 68 |
68 | 68 |
|
69 | 69 | // lldb-command:v *i16_ref
|
70 |
| -// lldbr-check:(i16) *i16_ref = -16 |
| 70 | +// lldb-check:(i16) *i16_ref = -16 |
71 | 71 |
|
72 | 72 | // lldb-command:v *i32_ref
|
73 |
| -// lldbr-check:(i32) *i32_ref = -32 |
| 73 | +// lldb-check:(i32) *i32_ref = -32 |
74 | 74 |
|
75 | 75 | // lldb-command:v *i64_ref
|
76 |
| -// lldbr-check:(i64) *i64_ref = -64 |
| 76 | +// lldb-check:(i64) *i64_ref = -64 |
77 | 77 |
|
78 | 78 | // lldb-command:v *uint_ref
|
79 |
| -// lldbr-check:(usize) *uint_ref = 1 |
| 79 | +// lldb-check:(usize) *uint_ref = 1 |
80 | 80 |
|
81 | 81 | // lldb-command:v *u8_ref
|
82 |
| -// lldbr-check:(u8) *u8_ref = 100 |
| 82 | +// lldb-check:(u8) *u8_ref = 100 |
83 | 83 |
|
84 | 84 | // lldb-command:v *u16_ref
|
85 |
| -// lldbr-check:(u16) *u16_ref = 16 |
| 85 | +// lldb-check:(u16) *u16_ref = 16 |
86 | 86 |
|
87 | 87 | // lldb-command:v *u32_ref
|
88 |
| -// lldbr-check:(u32) *u32_ref = 32 |
| 88 | +// lldb-check:(u32) *u32_ref = 32 |
89 | 89 |
|
90 | 90 | // lldb-command:v *u64_ref
|
91 |
| -// lldbr-check:(u64) *u64_ref = 64 |
| 91 | +// lldb-check:(u64) *u64_ref = 64 |
92 | 92 |
|
93 | 93 | // lldb-command:v *f16_ref
|
94 |
| -// lldbr-check:(f16) *f16_ref = 1.5 |
| 94 | +// lldb-check:(f16) *f16_ref = 1.5 |
95 | 95 |
|
96 | 96 | // lldb-command:v *f32_ref
|
97 |
| -// lldbr-check:(f32) *f32_ref = 2.5 |
| 97 | +// lldb-check:(f32) *f32_ref = 2.5 |
98 | 98 |
|
99 | 99 | // lldb-command:v *f64_ref
|
100 |
| -// lldbr-check:(f64) *f64_ref = 3.5 |
| 100 | +// lldb-check:(f64) *f64_ref = 3.5 |
101 | 101 |
|
102 | 102 | #![allow(unused_variables)]
|
103 | 103 | #![feature(omit_gdb_pretty_printer_section)]
|
|
0 commit comments