about summary refs log tree commit diff
path: root/tests/debuginfo/method-on-tuple-struct.rs
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-08-17 17:31:13 -0400
committerBen Kimock <kimockb@gmail.com>2024-08-18 12:39:06 -0400
commit43146616710b6ea7017aed22a978f942d6eb7ca3 (patch)
tree0783c9de4d1a5e9ac39ee7125d5d2b6166176f96 /tests/debuginfo/method-on-tuple-struct.rs
parentf04f6ca36d2439375d20a98be013384afbab0782 (diff)
downloadrust-43146616710b6ea7017aed22a978f942d6eb7ca3.tar.gz
rust-43146616710b6ea7017aed22a978f942d6eb7ca3.zip
Delete gdbg commands
Diffstat (limited to 'tests/debuginfo/method-on-tuple-struct.rs')
-rw-r--r--tests/debuginfo/method-on-tuple-struct.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/debuginfo/method-on-tuple-struct.rs b/tests/debuginfo/method-on-tuple-struct.rs
index 9cf9c6d7fba..71a11093f7d 100644
--- a/tests/debuginfo/method-on-tuple-struct.rs
+++ b/tests/debuginfo/method-on-tuple-struct.rs
@@ -8,7 +8,6 @@
 
 // STACK BY REF
 // gdb-command:print *self
-// gdbg-check:$1 = {__0 = 100, __1 = -100.5}
 // gdbr-check:$1 = method_on_tuple_struct::TupleStruct (100, -100.5)
 // gdb-command:print arg1
 // gdb-check:$2 = -1
@@ -18,7 +17,6 @@
 
 // STACK BY VAL
 // gdb-command:print self
-// gdbg-check:$4 = {__0 = 100, __1 = -100.5}
 // gdbr-check:$4 = method_on_tuple_struct::TupleStruct (100, -100.5)
 // gdb-command:print arg1
 // gdb-check:$5 = -3
@@ -28,7 +26,6 @@
 
 // OWNED BY REF
 // gdb-command:print *self
-// gdbg-check:$7 = {__0 = 200, __1 = -200.5}
 // gdbr-check:$7 = method_on_tuple_struct::TupleStruct (200, -200.5)
 // gdb-command:print arg1
 // gdb-check:$8 = -5
@@ -38,7 +35,6 @@
 
 // OWNED BY VAL
 // gdb-command:print self
-// gdbg-check:$10 = {__0 = 200, __1 = -200.5}
 // gdbr-check:$10 = method_on_tuple_struct::TupleStruct (200, -200.5)
 // gdb-command:print arg1
 // gdb-check:$11 = -7
@@ -48,7 +44,6 @@
 
 // OWNED MOVED
 // gdb-command:print *self
-// gdbg-check:$13 = {__0 = 200, __1 = -200.5}
 // gdbr-check:$13 = method_on_tuple_struct::TupleStruct (200, -200.5)
 // gdb-command:print arg1
 // gdb-check:$14 = -9