diff options
| author | bors <bors@rust-lang.org> | 2015-04-13 12:39:49 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-13 12:39:49 +0000 |
| commit | b9ed9e2a326cafa6f2445aec7221dc419089cf5f (patch) | |
| tree | 9163f199f70e5b84c88c86dd08d4b64851702c8d /src/test/debuginfo/generic-method-on-generic-struct.rs | |
| parent | 3cac76bcf239c5db7d612eea52dd39be6e0281b4 (diff) | |
| parent | 03f92694966259ee156bb8f3a7ef9d4dc587ecb9 (diff) | |
| download | rust-b9ed9e2a326cafa6f2445aec7221dc419089cf5f.tar.gz rust-b9ed9e2a326cafa6f2445aec7221dc419089cf5f.zip | |
Auto merge of #24351 - michaelwoerister:named-tuple-fields, r=alexcrichton
This PR makes `rustc` emit field names for tuple fields in DWARF. Formerly there was no way of directly accessing the fields of a tuple in GDB and LLDB since there is no C/C++ equivalent to this. Now, the debugger sees the name `__{field-index}` for tuple fields. So you can type for example `some_tuple_val.__2` to get the third tuple component.
When pretty printers are used (e.g. via `rust-gdb` or `rust-lldb`) these artificial field names will not clutter tuple rendering (which was the main motivation for not doing this in the past).
Solves #21948.
Diffstat (limited to 'src/test/debuginfo/generic-method-on-generic-struct.rs')
| -rw-r--r-- | src/test/debuginfo/generic-method-on-generic-struct.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/debuginfo/generic-method-on-generic-struct.rs b/src/test/debuginfo/generic-method-on-generic-struct.rs index fc9ef8e3a98..14df15242df 100644 --- a/src/test/debuginfo/generic-method-on-generic-struct.rs +++ b/src/test/debuginfo/generic-method-on-generic-struct.rs @@ -18,7 +18,7 @@ // STACK BY REF // gdb-command:print *self -// gdb-check:$1 = {x = {8888, -8888}} +// gdb-check:$1 = {x = {__0 = 8888, __1 = -8888}} // gdb-command:print arg1 // gdb-check:$2 = -1 // gdb-command:print arg2 @@ -27,7 +27,7 @@ // STACK BY VAL // gdb-command:print self -// gdb-check:$4 = {x = {8888, -8888}} +// gdb-check:$4 = {x = {__0 = 8888, __1 = -8888}} // gdb-command:print arg1 // gdb-check:$5 = -3 // gdb-command:print arg2 |
