|
68 | 68 |
|
69 | 69 | // lldb-command:run
|
70 | 70 | // lldb-command:print *bool_ref
|
71 |
| -// lldb-check:[...]$0 = true |
| 71 | +// lldbg-check:[...]$0 = true |
| 72 | +// lldbr-check:(bool) *bool_ref = true |
72 | 73 |
|
73 | 74 | // lldb-command:print *int_ref
|
74 |
| -// lldb-check:[...]$1 = -1 |
| 75 | +// lldbg-check:[...]$1 = -1 |
| 76 | +// lldbr-check:(isize) *int_ref = -1 |
75 | 77 |
|
76 |
| -// NOTE: lldb doesn't support 32bit chars at the moment |
77 |
| -// d ebugger:print *char_ref |
78 |
| -// c heck:[...]$x = 97 |
| 78 | +// NOTE: only rust-enabled lldb supports 32bit chars |
| 79 | +// lldbr-command:print *char_ref |
| 80 | +// lldbr-check:(char) *char_ref = 'a' |
79 | 81 |
|
80 | 82 | // lldb-command:print *i8_ref
|
81 |
| -// lldb-check:[...]$2 = 'D' |
| 83 | +// lldbg-check:[...]$2 = 'D' |
| 84 | +// lldbr-check:(i8) *i8_ref = 68 |
82 | 85 |
|
83 | 86 | // lldb-command:print *i16_ref
|
84 |
| -// lldb-check:[...]$3 = -16 |
| 87 | +// lldbg-check:[...]$3 = -16 |
| 88 | +// lldbr-check:(i16) *i16_ref = -16 |
85 | 89 |
|
86 | 90 | // lldb-command:print *i32_ref
|
87 |
| -// lldb-check:[...]$4 = -32 |
| 91 | +// lldbg-check:[...]$4 = -32 |
| 92 | +// lldbr-check:(i32) *i32_ref = -32 |
88 | 93 |
|
89 | 94 | // lldb-command:print *i64_ref
|
90 |
| -// lldb-check:[...]$5 = -64 |
| 95 | +// lldbg-check:[...]$5 = -64 |
| 96 | +// lldbr-check:(i64) *i64_ref = -64 |
91 | 97 |
|
92 | 98 | // lldb-command:print *uint_ref
|
93 |
| -// lldb-check:[...]$6 = 1 |
| 99 | +// lldbg-check:[...]$6 = 1 |
| 100 | +// lldbr-check:(usize) *uint_ref = 1 |
94 | 101 |
|
95 | 102 | // lldb-command:print *u8_ref
|
96 |
| -// lldb-check:[...]$7 = 'd' |
| 103 | +// lldbg-check:[...]$7 = 'd' |
| 104 | +// lldbr-check:(u8) *u8_ref = 100 |
97 | 105 |
|
98 | 106 | // lldb-command:print *u16_ref
|
99 |
| -// lldb-check:[...]$8 = 16 |
| 107 | +// lldbg-check:[...]$8 = 16 |
| 108 | +// lldbr-check:(u16) *u16_ref = 16 |
100 | 109 |
|
101 | 110 | // lldb-command:print *u32_ref
|
102 |
| -// lldb-check:[...]$9 = 32 |
| 111 | +// lldbg-check:[...]$9 = 32 |
| 112 | +// lldbr-check:(u32) *u32_ref = 32 |
103 | 113 |
|
104 | 114 | // lldb-command:print *u64_ref
|
105 |
| -// lldb-check:[...]$10 = 64 |
| 115 | +// lldbg-check:[...]$10 = 64 |
| 116 | +// lldbr-check:(u64) *u64_ref = 64 |
106 | 117 |
|
107 | 118 | // lldb-command:print *f32_ref
|
108 |
| -// lldb-check:[...]$11 = 2.5 |
| 119 | +// lldbg-check:[...]$11 = 2.5 |
| 120 | +// lldbr-check:(f32) *f32_ref = 2.5 |
109 | 121 |
|
110 | 122 | // lldb-command:print *f64_ref
|
111 |
| -// lldb-check:[...]$12 = 3.5 |
| 123 | +// lldbg-check:[...]$12 = 3.5 |
| 124 | +// lldbr-check:(f64) *f64_ref = 3.5 |
112 | 125 |
|
113 | 126 | #![allow(unused_variables)]
|
114 | 127 | #![feature(omit_gdb_pretty_printer_section)]
|
|
0 commit comments