Skip to content

Commit aa2408a

Browse files
debuginfo: Refactor debuginfo generation for types -- Make generator-objects test case architecture independent.
1 parent 584855e commit aa2408a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/test/debuginfo/generator-objects.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -43,30 +43,30 @@
4343
// cdb-command: dx b
4444
// cdb-check: b : Unresumed [Type: enum$<generator_objects::main::generator_env$0>]
4545
// cdb-check: [variant] : Unresumed
46-
// cdb-check: [+0x000] _ref__a : 0x[...] : 5 [Type: int *]
46+
// cdb-check: [+0x[...]] _ref__a : 0x[...] : 5 [Type: int *]
4747

4848
// cdb-command: g
4949
// cdb-command: dx b
5050
// cdb-check: b : Suspend0 [Type: enum$<generator_objects::main::generator_env$0>]
5151
// cdb-check: [variant] : Suspend0
52-
// cdb-check: [+0x008] c : 6 [Type: int]
53-
// cdb-check: [+0x00c] d : 7 [Type: int]
54-
// cdb-check: [+0x000] _ref__a : 0x[...] : 5 [Type: int *]
52+
// cdb-check: [+0x[...]] c : 6 [Type: int]
53+
// cdb-check: [+0x[...]] d : 7 [Type: int]
54+
// cdb-check: [+0x[...]] _ref__a : 0x[...] : 5 [Type: int *]
5555

5656
// cdb-command: g
5757
// cdb-command: dx b
5858
// cdb-check: b : Suspend1 [Type: enum$<generator_objects::main::generator_env$0>]
5959
// cdb-check: [variant] : Suspend1
60-
// cdb-check: [+0x008] c : 7 [Type: int]
61-
// cdb-check: [+0x00c] d : 8 [Type: int]
62-
// cdb-check: [+0x000] _ref__a : 0x[...] : 6 [Type: int *]
60+
// cdb-check: [+0x[...]] c : 7 [Type: int]
61+
// cdb-check: [+0x[...]] d : 8 [Type: int]
62+
// cdb-check: [+0x[...]] _ref__a : 0x[...] : 6 [Type: int *]
6363

6464
// cdb-command: g
6565
// cdb-command: dx b
6666
// cdb-check: b : Returned [Type: enum$<generator_objects::main::generator_env$0>]
6767
// cdb-check: [<Raw View>] [Type: enum$<generator_objects::main::generator_env$0>]
6868
// cdb-check: [variant] : Returned
69-
// cdb-check: [+0x000] _ref__a : 0x[...] : 6 [Type: int *]
69+
// cdb-check: [+0x[...]] _ref__a : 0x[...] : 6 [Type: int *]
7070

7171
#![feature(omit_gdb_pretty_printer_section, generators, generator_trait)]
7272
#![omit_gdb_pretty_printer_section]
@@ -97,6 +97,7 @@ fn main() {
9797
_zzz(); // #break
9898
}
9999

100+
#[inline(never)]
100101
fn _zzz() {
101102
()
102103
}

0 commit comments

Comments
 (0)