about summary refs log tree commit diff
path: root/tests/debuginfo/coroutine-locals.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/debuginfo/coroutine-locals.rs')
-rw-r--r--tests/debuginfo/coroutine-locals.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/debuginfo/coroutine-locals.rs b/tests/debuginfo/coroutine-locals.rs
index 0430e1d313b..80a68434dab 100644
--- a/tests/debuginfo/coroutine-locals.rs
+++ b/tests/debuginfo/coroutine-locals.rs
@@ -28,30 +28,30 @@
 
 // lldb-command:run
 // lldb-command:print a
-// lldbg-check:(int) $0 = 5
+// lldbg-check:(int) 5
 // lldbr-check:(int) a = 5
 // lldb-command:print c
-// lldbg-check:(int) $1 = 6
+// lldbg-check:(int) 6
 // lldbr-check:(int) c = 6
 // lldb-command:print d
-// lldbg-check:(int) $2 = 7
+// lldbg-check:(int) 7
 // lldbr-check:(int) d = 7
 // lldb-command:continue
 // lldb-command:print a
-// lldbg-check:(int) $3 = 7
+// lldbg-check:(int) 7
 // lldbr-check:(int) a = 7
 // lldb-command:print c
-// lldbg-check:(int) $4 = 6
+// lldbg-check:(int) 6
 // lldbr-check:(int) c = 6
 // lldb-command:print e
-// lldbg-check:(int) $5 = 8
+// lldbg-check:(int) 8
 // lldbr-check:(int) e = 8
 // lldb-command:continue
 // lldb-command:print a
-// lldbg-check:(int) $6 = 8
+// lldbg-check:(int) 8
 // lldbr-check:(int) a = 8
 // lldb-command:print c
-// lldbg-check:(int) $7 = 6
+// lldbg-check:(int) 6
 // lldbr-check:(int) c = 6
 
 #![feature(omit_gdb_pretty_printer_section, coroutines, coroutine_trait)]