about summary refs log tree commit diff
path: root/tests/debuginfo/shadowed-variable.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/shadowed-variable.rs
parentc5fdc90a733187564c3a5dc2567cdb232738b7f7 (diff)
downloadrust-41d06f41158b9efaaaeed141bd9a8315527410ec.tar.gz
rust-41d06f41158b9efaaaeed141bd9a8315527410ec.zip
Delete lldbr annotations
Diffstat (limited to 'tests/debuginfo/shadowed-variable.rs')
-rw-r--r--tests/debuginfo/shadowed-variable.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/debuginfo/shadowed-variable.rs b/tests/debuginfo/shadowed-variable.rs
index 87c85a9e1e2..cbbad4c2b7c 100644
--- a/tests/debuginfo/shadowed-variable.rs
+++ b/tests/debuginfo/shadowed-variable.rs
@@ -40,42 +40,32 @@
 
 // lldb-command:v x
 // lldbg-check:[...] false
-// lldbr-check:(bool) x = false
 // lldb-command:v y
 // lldbg-check:[...] true
-// lldbr-check:(bool) y = true
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 10
-// lldbr-check:(i32) x = 10
 // lldb-command:v y
 // lldbg-check:[...] true
-// lldbr-check:(bool) y = true
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 10.5
-// lldbr-check:(f64) x = 10.5
 // lldb-command:v y
 // lldbg-check:[...] 20
-// lldbr-check:(i32) y = 20
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 10.5
-// lldbr-check:(f64) x = 10.5
 // lldb-command:v y
 // lldbg-check:[...] 20
-// lldbr-check:(i32) y = 20
 // lldb-command:continue
 
 // lldb-command:v x
 // lldbg-check:[...] 11.5
-// lldbr-check:(f64) x = 11.5
 // lldb-command:v y
 // lldbg-check:[...] 20
-// lldbr-check:(i32) y = 20
 // lldb-command:continue
 
 #![feature(omit_gdb_pretty_printer_section)]