https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/215514
This is a follow up to https://github.com/llvm/llvm-project/pull/210076. The unwind plan is now valid at every location. >From 2d259eb1b11788a30f7417bd602e832fb0996e39 Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Tue, 11 Aug 2026 12:35:10 +0200 Subject: [PATCH] [lldb][Windows] Mark unwind plan as valid at all instructions --- lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp b/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp index 079b22a307602..b07cff31313a4 100644 --- a/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp +++ b/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp @@ -772,7 +772,7 @@ UnwindPlanSP ABIWindows_x86_64::CreateDefaultUnwindPlan() { plan_sp->AppendRow(std::move(row)); plan_sp->SetSourceName("x86_64 default unwind plan"); plan_sp->SetSourcedFromCompiler(eLazyBoolNo); - plan_sp->SetUnwindPlanValidAtAllInstructions(eLazyBoolNo); + plan_sp->SetUnwindPlanValidAtAllInstructions(eLazyBoolYes); return plan_sp; } _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
