Skip to content

Commit bcb7de3

Browse files
committed
Don't panic about debug info for Arm64 Windows unwind info
1 parent c28d433 commit bcb7de3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/debuginfo/unwind.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ impl UnwindContext {
6060
self.frame_table
6161
.add_fde(self.cie_id.unwrap(), unwind_info.to_fde(address_for_func(func_id)));
6262
}
63-
UnwindInfo::WindowsX64(_) => {
64-
// FIXME implement this
63+
UnwindInfo::WindowsX64(_) | UnwindInfo::WindowsArm64(_) => {
64+
// Windows does not have debug info for its unwind info.
6565
}
6666
unwind_info => unimplemented!("{:?}", unwind_info),
6767
}

0 commit comments

Comments
 (0)