about summary refs log tree commit diff
path: root/src/test/debuginfo/generic-function.rs
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo>2015-04-06 11:39:51 -0700
committerMichael Woerister <michaelwoerister@posteo>2015-04-12 20:44:25 +0200
commit03f92694966259ee156bb8f3a7ef9d4dc587ecb9 (patch)
tree9363dd3d1538fa2984f99607ce4fc5af72de6962 /src/test/debuginfo/generic-function.rs
parentfeeb23d42e0b1bc6f0466d4c6f035cfc3a4e9718 (diff)
downloadrust-03f92694966259ee156bb8f3a7ef9d4dc587ecb9.tar.gz
rust-03f92694966259ee156bb8f3a7ef9d4dc587ecb9.zip
Add a name for tuple fields in debuginfo so that they can be accessed in debuggers.
Diffstat (limited to 'src/test/debuginfo/generic-function.rs')
-rw-r--r--src/test/debuginfo/generic-function.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/debuginfo/generic-function.rs b/src/test/debuginfo/generic-function.rs
index 1748083b2ba..890133c58c8 100644
--- a/src/test/debuginfo/generic-function.rs
+++ b/src/test/debuginfo/generic-function.rs
@@ -21,7 +21,7 @@
 // gdb-command:print *t1
 // gdb-check:$2 = 2.5
 // gdb-command:print ret
-// gdb-check:$3 = {{1, 2.5}, {2.5, 1}}
+// gdb-check:$3 = {__0 = {__0 = 1, __1 = 2.5}, __1 = {__0 = 2.5, __1 = 1}}
 // gdb-command:continue
 
 // gdb-command:print *t0
@@ -29,7 +29,7 @@
 // gdb-command:print *t1
 // gdb-check:$5 = 4
 // gdb-command:print ret
-// gdb-check:$6 = {{3.5, 4}, {4, 3.5}}
+// gdb-check:$6 = {__0 = {__0 = 3.5, __1 = 4}, __1 = {__0 = 4, __1 = 3.5}}
 // gdb-command:continue
 
 // gdb-command:print *t0
@@ -37,7 +37,7 @@
 // gdb-command:print *t1
 // gdb-check:$8 = {a = 6, b = 7.5}
 // gdb-command:print ret
-// gdb-check:$9 = {{5, {a = 6, b = 7.5}}, {{a = 6, b = 7.5}, 5}}
+// gdb-check:$9 = {__0 = {__0 = 5, __1 = {a = 6, b = 7.5}}, __1 = {__0 = {a = 6, b = 7.5}, __1 = 5}}
 // gdb-command:continue