From 23273e03d7a9d6b22953be450a1fb86bdca25a98 Mon Sep 17 00:00:00 2001 From: Ben Kimock Date: Thu, 15 Aug 2024 17:04:26 -0400 Subject: [PATCH] Disable macro-stepping on current lldb --- tests/debuginfo/macro-stepping.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/debuginfo/macro-stepping.rs b/tests/debuginfo/macro-stepping.rs index d469cbb761fc..3edac3c7832f 100644 --- a/tests/debuginfo/macro-stepping.rs +++ b/tests/debuginfo/macro-stepping.rs @@ -1,7 +1,7 @@ //@ ignore-windows //@ ignore-android //@ ignore-aarch64 -//@ min-lldb-version: 310 +//@ min-lldb-version: 1800 //@ min-gdb-version: 13.0 //@ aux-build:macro-stepping.rs @@ -12,6 +12,7 @@ extern crate macro_stepping; // exports new_scope!() //@ compile-flags:-g -Zmir-enable-passes=-SingleUseConsts +// SingleUseConsts shouldn't need to be disabled, see #128945 // === GDB TESTS ===================================================================================