about summary refs log tree commit diff
path: root/tests/debuginfo/lexical-scope-in-unconditional-loop.rs
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2024-08-18 16:59:58 -0400
committerBen Kimock <kimockb@gmail.com>2024-08-18 16:59:58 -0400
commit41d06f41158b9efaaaeed141bd9a8315527410ec (patch)
treea0d225432b2c6acdd4a41e3d6a2f42f638878679 /tests/debuginfo/lexical-scope-in-unconditional-loop.rs
parentc5fdc90a733187564c3a5dc2567cdb232738b7f7 (diff)
downloadrust-41d06f41158b9efaaaeed141bd9a8315527410ec.tar.gz
rust-41d06f41158b9efaaaeed141bd9a8315527410ec.zip
Delete lldbr annotations
Diffstat (limited to 'tests/debuginfo/lexical-scope-in-unconditional-loop.rs')
-rw-r--r--tests/debuginfo/lexical-scope-in-unconditional-loop.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/debuginfo/lexical-scope-in-unconditional-loop.rs b/tests/debuginfo/lexical-scope-in-unconditional-loop.rs
index 344e1893c86..1d111dab5c9 100644
--- a/tests/debuginfo/lexical-scope-in-unconditional-loop.rs
+++ b/tests/debuginfo/lexical-scope-in-unconditional-loop.rs
@@ -67,69 +67,56 @@
 // FIRST ITERATION
 // lldb-command:v x
 // lldbg-check:[...] 0
-// lldbr-check:(i32) x = 0
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 1
-// lldbr-check:(i32) x = 1
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 101
-// lldbr-check:(i32) x = 101
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 101
-// lldbr-check:(i32) x = 101
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] -987
-// lldbr-check:(i32) x = -987
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 101
-// lldbr-check:(i32) x = 101
 // lldb-command:continue
 
 
 // SECOND ITERATION
 // lldb-command:v x
 // lldbg-check:[...] 1
-// lldbr-check:(i32) x = 1
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 2
-// lldbr-check:(i32) x = 2
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 102
-// lldbr-check:(i32) x = 102
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 102
-// lldbr-check:(i32) x = 102
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] -987
-// lldbr-check:(i32) x = -987
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 102
-// lldbr-check:(i32) x = 102
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 2
-// lldbr-check:(i32) x = 2
 // lldb-command:continue
 
 #![feature(omit_gdb_pretty_printer_section)]