Author: Charles Zablit Date: 2026-09-08T13:55:56+02:00 New Revision: 188842344ace5e1cc0cc84eec02d4a746213277a
URL: https://github.com/llvm/llvm-project/commit/188842344ace5e1cc0cc84eec02d4a746213277a DIFF: https://github.com/llvm/llvm-project/commit/188842344ace5e1cc0cc84eec02d4a746213277a.diff LOG: [lldb][Windows] Mark unwind plan as valid at all instructions (#215514) This is a follow up to https://github.com/llvm/llvm-project/pull/210076. The unwind plan is now valid at every location. Added: Modified: lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp Removed: ################################################################################ diff --git a/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp b/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp index be3c83880bd60..2d5b0566c4cfa 100644 --- a/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp +++ b/lldb/source/Plugins/ABI/X86/ABIWindows_x86_64.cpp @@ -766,7 +766,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
