From bcb7de3bb67d2ba26d6a41828debf837ffc62d11 Mon Sep 17 00:00:00 2001 From: Daniel Paoliello Date: Sun, 29 Sep 2024 19:40:37 -0700 Subject: [PATCH] Don't panic about debug info for Arm64 Windows unwind info --- src/debuginfo/unwind.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debuginfo/unwind.rs b/src/debuginfo/unwind.rs index 9399230f2..362333d35 100644 --- a/src/debuginfo/unwind.rs +++ b/src/debuginfo/unwind.rs @@ -60,8 +60,8 @@ impl UnwindContext { self.frame_table .add_fde(self.cie_id.unwrap(), unwind_info.to_fde(address_for_func(func_id))); } - UnwindInfo::WindowsX64(_) => { - // FIXME implement this + UnwindInfo::WindowsX64(_) | UnwindInfo::WindowsArm64(_) => { + // Windows does not have debug info for its unwind info. } unwind_info => unimplemented!("{:?}", unwind_info), }