about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Paoliello <daniel@meta-sys.info>2024-09-29 19:40:37 -0700
committerDaniel Paoliello <danpao@microsoft.com>2024-10-24 09:33:49 -0700
commitbcb7de3bb67d2ba26d6a41828debf837ffc62d11 (patch)
treeeed839300230f23b6e075215c843e4ad58a55cb5
parentc28d433bd98cdb29406e5b5f62a5c8eeb9f74723 (diff)
downloadrust-bcb7de3bb67d2ba26d6a41828debf837ffc62d11.tar.gz
rust-bcb7de3bb67d2ba26d6a41828debf837ffc62d11.zip
Don't panic about debug info for Arm64 Windows unwind info
-rw-r--r--src/debuginfo/unwind.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debuginfo/unwind.rs b/src/debuginfo/unwind.rs
index 9399230f292..362333d35a4 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),
         }