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